@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap");
/*  --------------------------------------------------------------------------  *\

    GLOBAL SITE VARIABLES

    ORGANIZATION OF OUR CSS DEFINITIONS GROUP CLASS DEFINITIONS BY THE FOLLOWING TYPES

    POSITIONING (DISPLAY, FLEX, FLEX ITEM, POSITION, LEFT, TOP, TRANSFORM)
    BOX SIZING (WIDTH, HEIGHT, MARGIN, PADDING)
    BOX STYLING (OPACITY, BACKGROUND, BOX SHADOW, BORDER, BORDER RADIUS, OVERFLOW)
    FONT STYLING (FONT, FONT-FAMILY, FONT-STYLE, FONT-SIZE, LINE-HEIGHT, FONT-WEIGHT)
    TEXT STYLING (TEXT-DECORATION, TEXT-TRANSFORM, TEXT-ALIGN, TEXT-SHADOW)
    OTHER (TRANSITONS, ANIMATIONS, CURSOR)

    IF A MIXIN IS AVAILABLE USE THAT INSTEAD WRITING ALL PROPERTIES OUT

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    COLORS
    
    IT'S IMPORTANT TO USE A GENERIC NAMING SYSTEM FOR COLORS USED THROUGHOUT THE 
    SITE. THIS ALLOWS US TO BUILD UPDATE VARIABLES IN THE FUTURE WITHOUT HAVING 
    POTENTIAL ISSUES LIKE RED BECOMING GREEN DUE TO A RE-BRAND.

    Primary, Seoncdary, and Tertiary refer to the most used, second most used
    and third most used color in the pallete.  These are generally shades of
    gray used to set the color of copy and backgrounds of elements.

    Aceent colors are used to set the brand colors used throughout the web 
    design. These are commonly used to accent an element like when used as a 
    border or design element to a heading, or draw the users attention to a
    call to action like a button.

    The reason we want to stick to this style naming convention for colors
    is so that if the branding of the company changes, we can quickly update
    a variable from a light shade of green to a WCAG compliant shade of green
    and not have to do a find and replace for $lt-green and change it to 
    $dk-green.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    FONT SETTINGS

    These variables define the font settings used throughout the website.

    Setting the copies font family, size, color and line-height allows us to 
    use these variables throughout our files and ensure we are consistently
    setting things up.  These are all used in the reset file on the body and 
    html element, which should mean the only time you need to re-use these
    are when you are resetting a more specific class back to these values.

    The headings file under structure utilize the heading variables.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    MEDIA QUERIES

    Common media queries that we utilize throughout the SCSS for the website.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    GRID SETUP

    Grid variables that are used to set the base variables of the Grid Mixins.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    GUTTER

    This is probably the most used set of variables found throuhgout the base 
    styling of the component library.

    Utilizing a standard set of gutters for spacing will help maintain 
    consistency throughout the website. Most of our designers use at least 3
    common sizes for gutters in their designs.

    We utilize the Normal, Small and Large gutters to create the spacing for
    all of our components that have sm and lg variations.  The core styling
    utilizes the $gutter variable, while the sm and lg utilize $gutterSm
    and $gutterLg respectively.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    FEED SPACING FOR CARDS

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    COMPONENT SPACING FOR CARDS, CONTAINERS, & SECTIONS

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    MISC VARIABLES

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    GLOBAL MIXINS

    These are a common set of mixins that are commonly 

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    SCREEN READER ONLY

    This mixin hides all content from the view, but keeps it audible for 
    screen readers.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    CLEARS

    Both of the following mixins can be used to clear floated elements.

    Clearfix makes the before and after of the wrapping element able to clear
    the floats contained within it. This is good to use when all floated 
    elements are contained with in a single parent element.

    Clear makes the element itself clear the floats, this is used when an 
    element is following a floated element and needs to be on a new row.

    While floating is older and not as prefered as using newer techniques for 
    page layout, it still serves a useful purpose and should be used 
    appropriately.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    THE APPEARANCE MIXIN

    This is used to reset an objects experience of the default settings applied
    by the browser.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    THE HOVER/FOCUS MIXIN

    90% of the time when a hover psuedo class is added to an element the focus 
    psuedo class should be defined as well. These psuedo classes are also 
    generally the same styles.

    We've created the hover mixin to apply both the hover & focus states.

    This MUST be used whenever defining a hover state, unless the focus state
    requires different behavior to be applied.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    THE TRAMSFORM MIXINS

    Transform is used to move an element on the page, without triggering a 
    re-paint.  This is key when animating either through animate or transition
    on an element, the animation will be faster and work better when using the
    transform property rather than the left, top, right, and bottom properties.

    The transform mixins are a set of commonly coupled CSS 3 properties used
    together.  They are each individually defined because they don't all need
    to be used all the time.

    Transform is a must for all of the others to work, and the others are 
    useless without it.

    Transform Origin will change the location where the transform will start
    to take effect from.

    Perspective will be be amount of distance in space the transform should be
    applied from.

    Backface is used to hide the backside of an element when it's rotated and
    the back of the parent element is not visible.  Without this applied, the
    back side of the element will appear behind the front of the element.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    THE POSITION MIXIN

    The position mixin was created to help position elements by combining 
    severally coupled properties into the mixin.

    When positioning something relative, absolute, fixed, or sticky we almost
    always are defining the z-index, so that is our second variable.  Setting
    the variable to null will ignore the z-index property completely and the
    z-index will be inherited from it's natural position in the dom. Otherwise
    pass in an integer and the z-index will be defined.

    The next variable applies the direction, this can either be an array of 
    directions passed in like (top, left), or it can be a single direction like
    left.

    The next variable applies the coordinates corresponding to the direction. 
    For each direction passed in, a corresponding coordinate needs to accompany
    it. For example if (top, left) is set as our direction, then (0, 0) would 
    set the top: 0; left: 0; properties.

    The last variable to be passed in is the transform property which will 
    call the transform mixin.

    Only the position variable is required to make the mixin wor, which is why
    we default to relative, the rest are preset to null.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    THE FLEX MIXINS

    This group of mixins can be used to ensure all vendor prefixing is 
    correctly applied to support older browsers.  In addition, we couple the 
    common properties that work with flex.

    When the flex mixin is called, the first property will set the display of
    the object to flex.

    The first variable allows you to set the justify content property which 
    aligns the child elements accross the first axis. 

    Remember:
        - when setting flex-flow to column the first axis is the Y-axis 
        - when setting flex-flow to row the first axis is the X-axis

    The second variable allows you to set the align items property which 
    aligns the child elements accross the second axis. 

    Remember:
        - when setting flex-flow to column the second axis is the Y-axis 
        - when setting flex-flow to row the second axis is the X-axis

    The third variable allows you to set align content, which has no effect
    when there is only one line of items, 

    The final variable is flex-flow which allows you to set the direction and 
    whether the items inside can wrap or not.

    The Flex Item mixin is used to apply properties to the flexed item.

    The first three variables are required in order for this mixin to work.

    The grow variable tells the flex item whether it's allowed to grow to 
    fill the unused space.

    The shrink variable tells the flex item whether it's allowed to shrink
    to accomodate more elements within the space.

    The flex basis variable defines how much space the element should take up
    initially, then scale proportionatly based on that with the other sibling
    elements. Generally we leave this set to auto.

    The final variable defines the order for the element to appear.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    THE CSS COLUMNS MIXIN

    This is used to set a parent element to X number of columns. This is not to 
    be confused with our grid columns, or grid-template-columns mixins.

    The multicolumn mixin breaks the content contained within a parent element
    into multiple columns.  This is helpful for breaking lists or paragraphs
    into multiple columns.

    The first variable defines how many columns are desired.

    The second variable defines the space between each column.

    The third variable defines the rule styling (same definition as a border)
    applied between each column.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    THE SET WIDTH MIXIN

    This mixin is used to set the width of an element based on a group of
    media queries and their corresponding widths. For example the div within
    the header, section, and footer elements all use this mixin to set the
    width of the element at a corresponding media query so they are all
    styled with the same width.
    
    The first variable is a set of media queries, the first item in the array
    will be set as the default. The following items will all be set to their
    corresponding media queries.
    
    The second variable is an array of widths, normally % based, but could be
    any value acceptable to be defined in the width property.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    THE CSS3 GRID MIXINS

    This set of mixins are used to build grid layouts using the CSS3 Grid 
    property.

    Grid Columns is used to set the columns on a parent element.

    Grid Rows is used to set the rows on a parent element.
    
    Grid Column Gap will define the space between the columns.

    Grid Row Gap will define the space between the rows.

    Grid will combine all of the above mixins into 1 mixin used to define
    the base of the parent item.  The above mixins can be used on their own
    to change their values at various media queries.

    IE11 does support grid, so we can utilize it to create complex layouts, 
    however there are some elements of the grid which it does not support.  
    This mixin will fix all of that and write out the proper settings to 
    support IE.

    We utilize the @supports feature which is not supported by IE11, but is
    supported by all browsers that also happen to use grid.  So using this 
    feature we can reset some of the settings applied to IE11.

    The grid item mixin will set specific values needed for the placement of
    the item itself.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    THE GRID LAYOUT MIXINS

    This mixin is used to create a row and column based grid structure, like 
    the one found in bootstrap, actually exactly like the one found in bootstrap.

    The Set Col Widths mixin is looped over and sets the width based of an 
    element based on how many columns are defined.

    Generate Columns is used to loop over each media query and then calls the 
    Set Col Widths mixin to build each group out.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    CSS 3 EFFECTS

    These mixins in the past have had lots of browser prefixes to make them
    work across all the browsers.

    We will maintain the prefixes, and remove them as needed.

    The mixins will continue to work, as to not break the code, but as older
    browsers decline in use, we will remove unnecessary prefixes to help keep
    our file size limited.

    Effects include:
    * Box Shadow
    * Animations
    * Filters
    * Tranistions

\*  --------------------------------------------------------------------------  */
/*--- FILTERS ---*/
/*--- TRANSITION ---*/
/*  --------------------------------------------------------------------------  *\

    THE FONT SIZE MIXIN

    This mixin was originally used to support REM and PX based measurement for
    fonts.  However, since we have moved to a completely rem based measurement
    this mixin is less likely to be used.

    This is marked for deletion in an upcoming update, but we want to keep this
    around for a little while longer.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    THE BUTTON MIXIN

    This mixin controls the base button styles since there are several different
    buttons class structures used throughout BigCommerce.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    BORDER MIXIN

    This mixin creates border around given selector for testing purposes

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    FOCUS TOOLTIP

    This mixin creates a tooltip on focus for accessibility

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    COMMON RESETS TO HELP MAKE BROWSERS DISPLAY MORE CONSISTANTLY

\*  --------------------------------------------------------------------------  */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

/*  --------------------------------------------------------------------------  *\

    RESETS THE FONT SIZE TO BE BASE 10

\*  --------------------------------------------------------------------------  */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden; }

@media (min-width: 768px) {
  body {
    overflow: unset; } }

body .nav-open {
  overflow: hidden; }

/*  --------------------------------------------------------------------------  *\

    STOPS MAIN FROM HAVING TOP PADDING

\*  --------------------------------------------------------------------------  */
main {
  padding-top: 0 !important; }

/*  --------------------------------------------------------------------------  *\

    PREVENTS HORIZONTAL SCROLLING WHEN IT'S UNDESIRED

\*  --------------------------------------------------------------------------  */
@media (max-width: 991.9px) {
  html, body {
    width: 100%; } }

/*  --------------------------------------------------------------------------  *\

    REMOVES OUTLINE ON FOCUS

\*  --------------------------------------------------------------------------  */
:focus {
  outline: none; }

/*  --------------------------------------------------------------------------  *\

    ANCHOR STYLES

    SETS A TRANSITION DEFAULT HERE FOR ALL ANCHORS.
    
    SETS UP THE SKIP CONTENT BUTTON THAT SHOULD BE FOUND AS THE FIRST ELEMENT 
    AFTER THE OPENING BODY TAG ON ALL PAGES.

\*  --------------------------------------------------------------------------  */
a {
  transition: all .25s; }
  a.skip-content {
    position: fixed;
    z-index: 10000;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -101%);
    -ms-transform: translate(-50%, -101%);
    transform: translate(-50%, -101%);
    padding: 0.75rem;
    background: #fff;
    color: #eab444;
    transition: transform 0.25s, background 0.25s, color 0.25s; }
    a.skip-content:focus {
      background: #eab444;
      color: #fff;
      -webkit-transform: translate(-50%, 1.875rem);
      -ms-transform: translate(-50%, 1.875rem);
      transform: translate(-50%, 1.875rem); }
    @media print {
      a.skip-content {
        display: none; } }

/*  --------------------------------------------------------------------------  *\

    RESETS THE BUTTON TO BE JUST LIKE ALL OTHER INLINE ELEMENTS

\*  --------------------------------------------------------------------------  */
button {
  background: none;
  border: none;
  font-size: 1em;
  font-family: "Work Sans", Helvetica, Arial, sans-serif;
  cursor: pointer; }

/*  --------------------------------------------------------------------------  *\

    RESETS STYLES ON INPUT ELEMENTS FOR FORMS

\*  --------------------------------------------------------------------------  */
input, select, textarea {
  border-radius: 0px;
  font-family: "Work Sans", Helvetica, Arial, sans-serif; }

/*  --------------------------------------------------------------------------  *\

    PROVIDES A CLASS FOR SCREEN READER ONLY ELEMENTS

\*  --------------------------------------------------------------------------  */
.sr-only {
  position: absolute;
  width: 1px !important;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); }

.icons-svg-sprite {
  display: none; }

/*  --------------------------------------------------------------------------  *\

    GLOBAL ELEMENTS

    These files establish global elements that appear throughout the website.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    HEADER

\*  --------------------------------------------------------------------------  */
body > header {
  /*  ----------------------------------------------------------------------  *\
        RESETS
        This code resets some of the styling for the a, label, button, and li
        to make it function as a navigation
    \*  ----------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\
        RESETS & VARIABLES
        Set some varialbes that apply to the scss files for header
    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    HEADER - CART

\*  --------------------------------------------------------------------------  */ }
  body > header .mobile-cart {
    display: flex;
    margin-left: 0.75rem; }
    @media (min-width: 768px) {
      body > header .mobile-cart {
        margin-left: 1rem; } }
    body > header .mobile-cart i {
      font-size: 1.25rem; }
    @media (min-width: 992px) {
      body > header .mobile-cart {
        position: absolute;
        right: 1rem;
        top: 2.25rem;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        display: none; } }
  @media (max-width: 991.9px) {
    body > header .desktop-cart {
      display: none; } }
  body > header .toggle-elements [data-cart-preview] {
    display: none; }
    @media (max-width: 991.9px) {
      body > header .toggle-elements [data-cart-preview] {
        display: flex;
        margin-left: 0.75rem; }
        body > header .toggle-elements [data-cart-preview] i {
          font-size: 1.25rem; }
        body > header .toggle-elements [data-cart-preview] .text {
          display: none; } }
  body > header [data-cart-preview] {
    position: relative;
    display: flex; }
  body > header .cart-quantity {
    display: none;
    background: #c9b072;
    color: #393939;
    font-size: 0.625rem;
    line-height: .5em;
    border-radius: 2.5rem;
    align-self: center;
    position: relative; }
    body > header .cart-quantity.is-empty {
      display: none; }
    body > header .cart-quantity.has-quantity {
      display: flex;
      align-items: center;
      justify-content: center; }
  body > header .cart-quantity {
    margin-right: 4px; }
  body > header .cart-dropdown {
    display: block;
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    transition: all 0.4s ease;
    background: #fff;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
    height: 100%;
    max-width: 100%; }
    body > header .cart-dropdown h2 {
      background-color: #f1ece8;
      display: flex;
      flex-flow: row wrap;
      font-family: inherit;
      align-items: center;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.75rem;
      margin: 0;
      text-align: left;
      padding: 1rem 1.5rem;
      gap: 0.5rem; }
      body > header .cart-dropdown h2 a {
        text-decoration: underline; }
      body > header .cart-dropdown h2 svg {
        margin-right: 0.5rem; }
      body > header .cart-dropdown h2 span {
        flex: 0 0 auto;
        max-width: 20ch; }
      @media (min-width: 768px) {
        body > header .cart-dropdown h2 span {
          max-width: none; } }
      @media (min-width: 992px) {
        body > header .cart-dropdown h2 {
          line-height: 3rem;
          padding: 1rem 3rem; } }
    body > header .cart-dropdown dl {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto;
      column-gap: 0.625rem;
      row-gap: 0.25rem;
      padding: 0;
      margin: 0;
      border-top: 1px solid #f1ece8;
      margin: 0.3125rem 0 0.3125rem 0;
      padding: 0.625rem 0 0.625rem 0; }
    body > header .cart-dropdown dd, body > header .cart-dropdown dt {
      color: #444444;
      margin: 0;
      padding: 0;
      font-size: .8em; }
    body > header .cart-dropdown form div {
      text-align: left; }
    body > header .cart-dropdown.is-loading {
      min-width: 90%; }
      @media (min-width: 768px) {
        body > header .cart-dropdown.is-loading {
          min-width: 31.25rem; } }
    body > header .cart-dropdown.is-visible {
      width: 100%;
      transform: translate(0, 0); }
      @media (min-width: 768px) {
        body > header .cart-dropdown.is-visible {
          max-width: 75%; } }
      @media (min-width: 992px) {
        body > header .cart-dropdown.is-visible {
          max-width: 50%; } }
    body > header .cart-dropdown .empty {
      text-align: center;
      margin-bottom: 1.25rem;
      font-style: italic; }
    body > header .cart-dropdown .free-shipping-box {
      text-align: center;
      font-size: 0.75rem; }
      body > header .cart-dropdown .free-shipping-box > [data-content-region]:not(:empty) {
        padding: 0.625rem; }
    body > header .cart-dropdown [data-sub-layout] {
      padding: 0; }
    body > header .cart-dropdown .widget-title {
      text-align: left; }
    body > header .cart-dropdown .checkout {
      position: fixed;
      z-index: 1;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: #fff;
      width: 100%;
      padding: 1rem;
      box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
      @media (min-width: 992px) {
        body > header .cart-dropdown .checkout {
          padding: 1.5rem 3rem; } }
    body > header .cart-dropdown .buttons {
      display: flex;
      flex-flow: column-reverse wrap;
      gap: 1rem;
      text-transform: uppercase; }
      body > header .cart-dropdown .buttons * {
        width: 100%; }
      body > header .cart-dropdown .buttons svg {
        fill: none;
        height: 1.5rem;
        width: 1.5rem !important; }
      body > header .cart-dropdown .buttons .button,
      body > header .cart-dropdown .buttons .btn {
        flex: 1 1 0px;
        font-size: 1rem;
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        float: none;
        margin: 0;
        text-transform: uppercase; }
        body > header .cart-dropdown .buttons .button > *,
        body > header .cart-dropdown .buttons .btn > * {
          flex: 0 0 auto;
          width: auto; }
      body > header .cart-dropdown .buttons [data-primary-checkout-now-action] svg {
        stroke: #5a575d; }
      @media (min-width: 992px) {
        body > header .cart-dropdown .buttons {
          flex-flow: row wrap; } }
    body > header .cart-dropdown .mini-cart-close {
      position: absolute;
      z-index: 1;
      top: 50%;
      right: 0.5rem;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      body > header .cart-dropdown .mini-cart-close svg {
        stroke: #444444;
        pointer-events: none;
        height: 1.5rem;
        width: 1.5rem; }
    body > header .cart-dropdown .mini-cart-header {
      position: relative; }
    body > header .cart-dropdown .content {
      padding: 1rem;
      padding-bottom: 50% !important;
      overflow: scroll;
      height: 100%; }
      @media (min-width: 992px) {
        body > header .cart-dropdown .content {
          padding: 3rem;
          padding-bottom: 50% !important; } }
    body > header .cart-dropdown .subtotal {
      width: 100%;
      font-size: 1.125rem;
      font-weight: 500;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-flow: row nowrap;
      margin: 0 0 1rem;
      text-transform: none; }
      @media (min-width: 992px) {
        body > header .cart-dropdown .subtotal {
          font-size: 1.3125rem; } }
    body > header .cart-dropdown .view-cart {
      float: right; }
    body > header .cart-dropdown .or-use-label {
      margin-bottom: 1rem; }
    body > header .cart-dropdown .products-header {
      border-bottom: 1px solid #e3e3e3;
      font-size: 1.3125rem;
      font-weight: 400;
      text-transform: none;
      padding-bottom: 1.5rem;
      margin: 0 0 1.5rem; }
    body > header .cart-dropdown .products {
      position: static;
      display: block;
      left: auto;
      top: auto;
      transform: none;
      background: none;
      margin: 1.875rem 0;
      width: 100%; }
      body > header .cart-dropdown .products p {
        margin: 0;
        color: #000; }
      body > header .cart-dropdown .products li {
        padding: 0; }
        body > header .cart-dropdown .products li:before {
          display: none; }
      body > header .cart-dropdown .products > li {
        border-bottom: 1px solid #e4e4cf;
        position: relative;
        padding: 0 0 1rem;
        width: 100%; }
        body > header .cart-dropdown .products > li a {
          background: none !important;
          height: auto;
          padding: 0;
          transition: opacity .3s ease-in-out;
          text-decoration: none; }
          body > header .cart-dropdown .products > li a:hover, body > header .cart-dropdown .products > li a:focus {
            opacity: .7;
            text-decoration: underline; }
        @media (min-width: 992px) {
          body > header .cart-dropdown .products > li {
            padding: 1.5rem 0; } }
        body > header .cart-dropdown .products > li:first-child {
          padding-top: 0; }
      body > header .cart-dropdown .products > li > .cnt {
        display: grid;
        grid-template-columns: 64px 1fr;
        grid-template-rows: auto;
        column-gap: 1.25rem;
        font-size: 1rem;
        transition: background-color .3s ease-in-out; }
        body > header .cart-dropdown .products > li > .cnt:hover, body > header .cart-dropdown .products > li > .cnt:focus {
          background-color: transparent; }
        @media (min-width: 992px) {
          body > header .cart-dropdown .products > li > .cnt {
            grid-template-columns: 140px 1fr; } }
      body > header .cart-dropdown .products img {
        width: 100%;
        height: auto;
        max-height: none; }
      body > header .cart-dropdown .products .cnt-header {
        display: flex;
        flex-flow: row wrap;
        align-items: top;
        justify-content: space-between;
        color: #333333;
        margin-bottom: 0.5rem; }
      body > header .cart-dropdown .products .name {
        flex: 1 1 auto;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5;
        margin: 0 1rem 0 0;
        max-width: 40ch;
        text-transform: none;
        white-space: normal; }
      body > header .cart-dropdown .products .price-total {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5;
        margin: 0; }
      body > header .cart-dropdown .products .product-quantity {
        font-size: 0.875rem;
        font-weight: 300; }
      body > header .cart-dropdown .products .custom-fields,
      body > header .cart-dropdown .products .options {
        display: block;
        color: #333333;
        margin: 1rem 0 0;
        position: static !important;
        list-style: none;
        max-width: 40ch; }
        body > header .cart-dropdown .products .custom-fields li + li,
        body > header .cart-dropdown .products .options li + li {
          margin-top: 0; }
        body > header .cart-dropdown .products .custom-fields span:last-child,
        body > header .cart-dropdown .products .options span:last-child {
          font-weight: 700; }
        body > header .cart-dropdown .products .custom-fields .option,
        body > header .cart-dropdown .products .options .option {
          display: flex;
          gap: 0.5rem; }
        body > header .cart-dropdown .products .custom-fields + .options,
        body > header .cart-dropdown .products .options + .options {
          margin-top: 0; }
      body > header .cart-dropdown .products .cart-remove {
        background-color: transparent;
        color: #333333;
        display: flex;
        align-items: center;
        justify-items: center;
        gap: 0.25rem;
        margin: 0;
        padding: 0;
        height: auto;
        width: auto; }
        body > header .cart-dropdown .products .cart-remove svg {
          background-color: #333333;
          border-radius: 50%;
          cursor: pointer;
          fill: white;
          height: 1rem;
          margin-top: 0;
          padding: spacing("eighth");
          transition: background-color 0.15s ease;
          width: 1rem; }
        body > header .cart-dropdown .products .cart-remove span {
          display: inline-block;
          text-decoration: underline; }
        body > header .cart-dropdown .products .cart-remove:hover, body > header .cart-dropdown .products .cart-remove:focus {
          color: #757575; }
          body > header .cart-dropdown .products .cart-remove:hover svg, body > header .cart-dropdown .products .cart-remove:focus svg {
            background-color: #757575; }
        @media (min-width: 992px) {
          body > header .cart-dropdown .products .cart-remove {
            position: absolute;
            z-index: 1;
            bottom: 1.5rem;
            right: 0; } }

/*  --------------------------------------------------------------------------  *\

    MODAL

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    MODAL - BACKGROUND

\*  --------------------------------------------------------------------------  */
.modal-background {
  transition: all 0.4s ease;
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0 !important;
  width: 100%;
  height: 100%;
  background: rgba(204, 204, 204, 0.75);
  visibility: hidden;
  opacity: 0; }
  .has-activeModal .modal-background {
    opacity: 1;
    visibility: visible;
    overflow: hidden; }

/*  --------------------------------------------------------------------------  *\

    MODAL - BASIC

    This is used to style the modal elements used throughout the website.

    This includes Cart Previews, BigCommerce alerts that do not use SWAL.

    For the Sweet Alert (SWAL) styling see modal/_swal.scss

\*  --------------------------------------------------------------------------  */
.modal {
  position: fixed;
  z-index: 15001;
  left: 50%;
  top: 50% !important;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 0.25rem;
  width: 90%;
  max-width: 75rem;
  min-width: 20rem;
  min-height: 15rem;
  max-height: 90vh;
  display: none;
  visibility: hidden;
  opacity: 0; }
  .modal--small {
    width: 50%; }
  .modal .modal-window {
    padding: 0;
    max-height: 90vh;
    overflow-y: scroll; }
  .modal .modal-body {
    padding: 2.5rem;
    overflow: auto; }
  .modal .modal-close {
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    display: block;
    background: #fff;
    border: 0.125rem solid #b9b9ad;
    color: #b9b9ad;
    border-radius: 100%;
    width: 2rem;
    height: 2rem;
    text-align: center;
    font-size: 1rem;
    z-index: 15001; }
    .modal .modal-close:before {
      content: " ";
      position: absolute;
      right: 0;
      top: 50%;
      border-width: 0.625rem;
      border-style: solid;
      border-color: transparent transparent #393939 transparent; }
    .modal .modal-close:after {
      content: attr(title);
      padding: 0.25rem 0.375rem;
      background-color: #393939;
      color: #fff;
      position: absolute;
      font-size: 1rem;
      white-space: nowrap;
      right: 0;
      top: 100%;
      cursor: default;
      border-radius: 0.5rem; }
    .modal .modal-close:before, .modal .modal-close:after {
      display: none; }
    .modal .modal-close:focus:before, .modal .modal-close:focus:after {
      display: block; }
  .modal--alert {
    border: 1px solid #f1ece8;
    padding: 40px 20px 20px 20px;
    text-align: center;
    width: auto; }
    .modal--alert .modal-content {
      padding-bottom: 1.25rem; }
  .modal.modal-on {
    visibility: visible;
    opacity: 1; }

@media print {
  .modal {
    background: #fff !important;
    display: none; } }

body.has-activeModal {
  overflow: hidden !important; }
  body.has-activeModal #hubspot-messages-iframe-container {
    display: none !important; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

.image-fullscreen {
  background-color: #393939;
  display: flex;
  justify-content: center; }
  .image-fullscreen img {
    display: flex;
    max-height: 80vh;
    max-width: 100%; }

.video-fullscreen {
  padding: 56.25% 0 0;
  position: relative;
  overflow: hidden; }
  .video-fullscreen iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%; }

/*  --------------------------------------------------------------------------  *\

    MODAL - SWAL

    This is used to control the styling for Sweet Alert modals.

\*  --------------------------------------------------------------------------  */
.swal2-popup.swal2-toast {
  flex-direction: row;
  align-items: center;
  width: auto;
  padding: 0.625em;
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0 0 0.625em #d9d9d9; }
  .swal2-popup.swal2-toast .swal2-header {
    flex-direction: row;
    padding: 0; }
  .swal2-popup.swal2-toast .swal2-title {
    flex-grow: 1;
    justify-content: flex-start;
    margin: 0 0.6em;
    font-size: 1em; }
  .swal2-popup.swal2-toast .swal2-footer {
    margin: 0.5em 0 0;
    padding: 0.5em 0 0;
    font-size: 0.8em; }
  .swal2-popup.swal2-toast .swal2-close {
    position: static;
    width: 0.8em;
    height: 0.8em;
    line-height: 0.8; }
  .swal2-popup.swal2-toast .swal2-content {
    justify-content: flex-start;
    padding: 0;
    font-size: 1em; }
  .swal2-popup.swal2-toast .swal2-icon {
    width: 2em;
    min-width: 2em;
    height: 2em;
    margin: 0; }
    .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
      display: flex;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold; }
      @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
          font-size: .25em; } }
    .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
      width: 2em;
      height: 2em; }
    .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
      top: .875em;
      width: 1.375em; }
      .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
        left: .3125em; }
      .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
        right: .3125em; }
  .swal2-popup.swal2-toast .swal2-actions {
    flex-basis: auto !important;
    width: auto;
    height: auto;
    margin: 0 .3125em; }
  .swal2-popup.swal2-toast .swal2-styled {
    margin: 0 .3125em;
    padding: .3125em .625em;
    font-size: 1em; }
    .swal2-popup.swal2-toast .swal2-styled:focus {
      box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(50, 100, 150, 0.4); }
  .swal2-popup.swal2-toast .swal2-success {
    border-color: #a5dc86; }
    .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'] {
      position: absolute;
      width: 1.6em;
      height: 3em;
      transform: rotate(45deg);
      border-radius: 50%; }
      .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'][class$='left'] {
        top: -.8em;
        left: -.5em;
        transform: rotate(-45deg);
        transform-origin: 2em 2em;
        border-radius: 4em 0 0 4em; }
      .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'][class$='right'] {
        top: -.25em;
        left: .9375em;
        transform-origin: 0 1.5em;
        border-radius: 0 4em 4em 0; }
    .swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
      width: 2em;
      height: 2em; }
    .swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
      top: 0;
      left: .4375em;
      width: .4375em;
      height: 2.6875em; }
    .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'] {
      height: .3125em; }
      .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'][class$='tip'] {
        top: 1.125em;
        left: .1875em;
        width: .75em; }
      .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'][class$='long'] {
        top: .9375em;
        right: .1875em;
        width: 1.375em; }
    .swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
      animation: swal2-toast-animate-success-line-tip .75s; }
    .swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
      animation: swal2-toast-animate-success-line-long .75s; }
  .swal2-popup.swal2-toast.swal2-show {
    animation: swal2-toast-show 0.5s; }
  .swal2-popup.swal2-toast.swal2-hide {
    animation: swal2-toast-hide 0.1s forwards; }

.swal2-container {
  display: flex;
  position: fixed;
  z-index: 1060;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.625em;
  overflow-x: hidden;
  transition: background-color 0.1s;
  -webkit-overflow-scrolling: touch; }
  .swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
    background: rgba(0, 0, 0, 0.4); }
  .swal2-container.swal2-backdrop-hide {
    background: transparent !important; }
  .swal2-container.swal2-top {
    align-items: flex-start; }
  .swal2-container.swal2-top-start, .swal2-container.swal2-top-left {
    align-items: flex-start;
    justify-content: flex-start; }
  .swal2-container.swal2-top-end, .swal2-container.swal2-top-right {
    align-items: flex-start;
    justify-content: flex-end; }
  .swal2-container.swal2-center {
    align-items: center; }
  .swal2-container.swal2-center-start, .swal2-container.swal2-center-left {
    align-items: center;
    justify-content: flex-start; }
  .swal2-container.swal2-center-end, .swal2-container.swal2-center-right {
    align-items: center;
    justify-content: flex-end; }
  .swal2-container.swal2-bottom {
    align-items: flex-end; }
  .swal2-container.swal2-bottom-start, .swal2-container.swal2-bottom-left {
    align-items: flex-end;
    justify-content: flex-start; }
  .swal2-container.swal2-bottom-end, .swal2-container.swal2-bottom-right {
    align-items: flex-end;
    justify-content: flex-end; }
  .swal2-container.swal2-bottom > :first-child,
  .swal2-container.swal2-bottom-start > :first-child,
  .swal2-container.swal2-bottom-left > :first-child,
  .swal2-container.swal2-bottom-end > :first-child,
  .swal2-container.swal2-bottom-right > :first-child {
    margin-top: auto; }
  .swal2-container.swal2-grow-fullscreen > .swal2-modal {
    display: flex !important;
    flex: 1;
    align-self: stretch;
    justify-content: center; }
  .swal2-container.swal2-grow-row > .swal2-modal {
    display: flex !important;
    flex: 1;
    align-content: center;
    justify-content: center; }
  .swal2-container.swal2-grow-column {
    flex: 1;
    flex-direction: column; }
    .swal2-container.swal2-grow-column.swal2-top, .swal2-container.swal2-grow-column.swal2-center, .swal2-container.swal2-grow-column.swal2-bottom {
      align-items: center; }
    .swal2-container.swal2-grow-column.swal2-top-start, .swal2-container.swal2-grow-column.swal2-center-start, .swal2-container.swal2-grow-column.swal2-bottom-start, .swal2-container.swal2-grow-column.swal2-top-left, .swal2-container.swal2-grow-column.swal2-center-left, .swal2-container.swal2-grow-column.swal2-bottom-left {
      align-items: flex-start; }
    .swal2-container.swal2-grow-column.swal2-top-end, .swal2-container.swal2-grow-column.swal2-center-end, .swal2-container.swal2-grow-column.swal2-bottom-end, .swal2-container.swal2-grow-column.swal2-top-right, .swal2-container.swal2-grow-column.swal2-center-right, .swal2-container.swal2-grow-column.swal2-bottom-right {
      align-items: flex-end; }
    .swal2-container.swal2-grow-column > .swal2-modal {
      display: flex !important;
      flex: 1;
      align-content: center;
      justify-content: center; }
  .swal2-container.swal2-no-transition {
    transition: none !important; }
  .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):not(.swal2-grow-fullscreen) > .swal2-modal {
    margin: auto; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .swal2-container .swal2-modal {
      margin: 0 !important; } }

.swal2-popup {
  display: none;
  position: relative;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  width: 32em;
  max-width: 100%;
  padding: 1.25em;
  border: none;
  border-radius: 0.3125em;
  background: #fff;
  font-family: inherit;
  font-size: 1rem; }
  .swal2-popup:focus {
    outline: none; }
  .swal2-popup.swal2-loading {
    overflow-y: hidden; }

.swal2-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.8em; }

.swal2-title {
  position: relative;
  max-width: 100%;
  margin: 0 0 0.4em;
  padding: 0;
  color: #595959;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word; }

.swal2-actions {
  display: flex;
  z-index: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1.25em auto 0; }
  .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
    opacity: .4; }
  .swal2-actions:not(.swal2-loading) .swal2-styled:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }
  .swal2-actions:not(.swal2-loading) .swal2-styled:active {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }
  .swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
    box-sizing: border-box;
    width: 2.5em;
    height: 2.5em;
    margin: .46875em;
    padding: 0;
    animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
    border: .25em solid transparent;
    border-radius: 100%;
    border-color: transparent;
    background-color: transparent !important;
    color: transparent !important;
    cursor: default;
    user-select: none; }
  .swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
    margin-right: 30px;
    margin-left: 30px; }
  .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
    border: 3px solid #999999;
    border-radius: 50%;
    border-right-color: transparent;
    box-shadow: 1px 1px 1px #fff; }

.swal2-styled {
  margin: .3125em;
  padding: .625em 2em;
  box-shadow: none;
  font-weight: 500; }
  .swal2-styled:not([disabled]) {
    cursor: pointer; }
  .swal2-styled.swal2-confirm {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #3085d6;
    color: #fff;
    font-size: 1.0625em; }
  .swal2-styled.swal2-cancel {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #aaa;
    color: #fff;
    font-size: 1.0625em; }
  .swal2-styled:focus {
    outline: none;
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(50, 100, 150, 0.4); }
  .swal2-styled::-moz-focus-inner {
    border: 0; }

.swal2-footer {
  justify-content: center;
  margin: 1.25em 0 0;
  padding: 1em 0 0;
  border-top: 1px solid #eee;
  color: #545454;
  font-size: 1em; }

.swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.25em;
  overflow: hidden;
  border-bottom-right-radius: 0.3125em;
  border-bottom-left-radius: 0.3125em; }

.swal2-timer-progress-bar {
  width: 100%;
  height: 0.25em;
  background: rgba(0, 0, 0, 0.2); }

.swal2-image {
  max-width: 100%;
  margin: 1.25em auto; }

.swal2-close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  padding: 0;
  overflow: hidden;
  transition: color 0.1s ease-out;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #cccccc;
  font-family: serif;
  font-size: 2.5em;
  line-height: 1.2;
  cursor: pointer; }
  .swal2-close:hover {
    transform: none;
    background: transparent;
    color: #f27474; }
  .swal2-close::-moz-focus-inner {
    border: 0; }

.swal2-content {
  z-index: 1;
  justify-content: center;
  margin: 0;
  padding: 0 1.6em;
  color: #545454;
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word; }

.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
  margin: 1em auto; }

.swal2-input,
.swal2-file,
.swal2-textarea {
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: inherit;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  color: inherit;
  font-size: 1.125em; }
  .swal2-input.swal2-inputerror,
  .swal2-file.swal2-inputerror,
  .swal2-textarea.swal2-inputerror {
    border-color: #f27474 !important;
    box-shadow: 0 0 2px #f27474 !important; }
  .swal2-input:focus,
  .swal2-file:focus,
  .swal2-textarea:focus {
    border: 1px solid #b4dbed;
    outline: none;
    box-shadow: 0 0 3px #c4e6f5; }
  .swal2-input::placeholder,
  .swal2-file::placeholder,
  .swal2-textarea::placeholder {
    color: #cccccc; }

.swal2-range {
  margin: 1em auto;
  background: #fff; }
  .swal2-range input {
    width: 80%; }
  .swal2-range output {
    width: 20%;
    color: inherit;
    font-weight: 600;
    text-align: center; }
  .swal2-range input,
  .swal2-range output {
    height: 2.625em;
    padding: 0;
    font-size: 1.125em;
    line-height: 2.625em; }

.swal2-input {
  height: 2.625em;
  padding: 0 0.75em; }
  .swal2-input[type='number'] {
    max-width: 10em; }

.swal2-file {
  background: inherit;
  font-size: 1.125em; }

.swal2-textarea {
  height: 6.75em;
  padding: 0.75em; }

.swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: .375em .625em;
  background: inherit;
  color: inherit;
  font-size: 1.125em; }

.swal2-radio,
.swal2-checkbox {
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit; }
  .swal2-radio label,
  .swal2-checkbox label {
    margin: 0 .6em;
    font-size: 1.125em; }
  .swal2-radio input,
  .swal2-checkbox input {
    margin: 0 .4em; }

.swal2-validation-message {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.625em;
  overflow: hidden;
  background: #f0f0f0;
  color: #666666;
  font-size: 1em;
  font-weight: 300; }
  .swal2-validation-message::before {
    content: '!';
    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; }

.swal2-icon {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 1.25em auto 1.875em;
  border: .25em solid transparent;
  border-radius: 50%;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  user-select: none; }
  .swal2-icon .swal2-icon-content {
    display: flex;
    align-items: center;
    font-size: 3.75em; }
  .swal2-icon.swal2-error {
    border-color: #f27474;
    color: #f27474; }
    .swal2-icon.swal2-error .swal2-x-mark {
      position: relative;
      flex-grow: 1; }
    .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; }
      .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
        left: 1.0625em;
        transform: rotate(45deg); }
      .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
        right: 1em;
        transform: rotate(-45deg); }
    .swal2-icon.swal2-error.swal2-icon-show {
      animation: swal2-animate-error-icon .5s; }
      .swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
        animation: swal2-animate-error-x-mark .5s; }
  .swal2-icon.swal2-warning {
    border-color: #facea8;
    color: #f8bb86; }
  .swal2-icon.swal2-info {
    border-color: #9de0f6;
    color: #3fc3ee; }
  .swal2-icon.swal2-question {
    border-color: #c9dae1;
    color: #87adbd; }
  .swal2-icon.swal2-success {
    border-color: #a5dc86;
    color: #a5dc86; }
    .swal2-icon.swal2-success [class^='swal2-success-circular-line'] {
      position: absolute;
      width: 3.75em;
      height: 7.5em;
      transform: rotate(45deg);
      border-radius: 50%; }
      .swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='left'] {
        top: -.4375em;
        left: -2.0635em;
        transform: rotate(-45deg);
        transform-origin: 3.75em 3.75em;
        border-radius: 7.5em 0 0 7.5em; }
      .swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='right'] {
        top: -.6875em;
        left: 1.875em;
        transform: rotate(-45deg);
        transform-origin: 0 3.75em;
        border-radius: 0 7.5em 7.5em 0; }
    .swal2-icon.swal2-success .swal2-success-ring {
      position: absolute;
      z-index: 2;
      top: -.25em;
      left: -.25em;
      box-sizing: content-box;
      width: 100%;
      height: 100%;
      border: 0.25em solid rgba(165, 220, 134, 0.3);
      border-radius: 50%; }
    .swal2-icon.swal2-success .swal2-success-fix {
      position: absolute;
      z-index: 1;
      top: .5em;
      left: 1.625em;
      width: .4375em;
      height: 5.625em;
      transform: rotate(-45deg); }
    .swal2-icon.swal2-success [class^='swal2-success-line'] {
      display: block;
      position: absolute;
      z-index: 2;
      height: .3125em;
      border-radius: .125em;
      background-color: #a5dc86; }
      .swal2-icon.swal2-success [class^='swal2-success-line'][class$='tip'] {
        top: 2.875em;
        left: .8125em;
        width: 1.5625em;
        transform: rotate(45deg); }
      .swal2-icon.swal2-success [class^='swal2-success-line'][class$='long'] {
        top: 2.375em;
        right: .5em;
        width: 2.9375em;
        transform: rotate(-45deg); }
    .swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
      animation: swal2-animate-success-line-tip .75s; }
    .swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
      animation: swal2-animate-success-line-long .75s; }
    .swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
      animation: swal2-rotate-success-circular-line 4.25s ease-in; }

.swal2-progress-steps {
  align-items: center;
  margin: 0 0 1.25em;
  padding: 0;
  background: inherit;
  font-weight: 600; }
  .swal2-progress-steps li {
    display: inline-block;
    position: relative; }
  .swal2-progress-steps .swal2-progress-step {
    z-index: 20;
    width: 2em;
    height: 2em;
    border-radius: 2em;
    background: #3085d6;
    color: #fff;
    line-height: 2em;
    text-align: center; }
    .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
      background: #3085d6; }
      .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
        background: #add8e6;
        color: #fff; }
      .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
        background: #add8e6; }
  .swal2-progress-steps .swal2-progress-step-line {
    z-index: 10;
    width: 2.5em;
    height: .4em;
    margin: 0 -1px;
    background: #3085d6; }

[class^='swal2'] {
  -webkit-tap-highlight-color: transparent; }

.swal2-show {
  animation: swal2-show 0.3s; }

.swal2-hide {
  animation: swal2-hide 0.15s forwards; }

.swal2-noanimation {
  transition: none; }

.swal2-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

.swal2-rtl .swal2-close {
  right: auto;
  left: 0; }

.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto; }

@supports (-ms-accelerator: true) {
  .swal2-range input {
    width: 100% !important; }
  .swal2-range output {
    display: none; } }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .swal2-range input {
    width: 100% !important; }
  .swal2-range output {
    display: none; } }

@-moz-document url-prefix() {
  .swal2-close:focus {
    outline: 2px solid rgba(50, 100, 150, 0.4); } }

@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg); }
  33% {
    transform: translateY(0) rotateZ(-2deg); }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg); }
  100% {
    transform: translateY(0) rotateZ(0deg); } }

@keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0; } }

@keyframes swal2-toast-animate-success-line-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 swal2-toast-animate-success-line-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 swal2-show {
  0% {
    transform: scale(0.7); }
  45% {
    transform: scale(1.05); }
  80% {
    transform: scale(0.95); }
  100% {
    transform: scale(1); } }

@keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(0.5);
    opacity: 0; } }

@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: .8125em;
    width: 1.5625em; } }

@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-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg); } }

@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0; }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0; }
  80% {
    margin-top: -.375em;
    transform: scale(1.15); }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1; } }

@keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    opacity: 1; } }

@keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden; }

body.swal2-height-auto {
  height: auto !important; }

body.swal2-no-backdrop .swal2-container {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  max-width: calc(100% - 0.625em * 2);
  background-color: transparent !important; }
  body.swal2-no-backdrop .swal2-container > .swal2-modal {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); }
  body.swal2-no-backdrop .swal2-container.swal2-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%); }
  body.swal2-no-backdrop .swal2-container.swal2-top-start, body.swal2-no-backdrop .swal2-container.swal2-top-left {
    top: 0;
    left: 0; }
  body.swal2-no-backdrop .swal2-container.swal2-top-end, body.swal2-no-backdrop .swal2-container.swal2-top-right {
    top: 0;
    right: 0; }
  body.swal2-no-backdrop .swal2-container.swal2-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  body.swal2-no-backdrop .swal2-container.swal2-center-start, body.swal2-no-backdrop .swal2-container.swal2-center-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%); }
  body.swal2-no-backdrop .swal2-container.swal2-center-end, body.swal2-no-backdrop .swal2-container.swal2-center-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%); }
  body.swal2-no-backdrop .swal2-container.swal2-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }
  body.swal2-no-backdrop .swal2-container.swal2-bottom-start, body.swal2-no-backdrop .swal2-container.swal2-bottom-left {
    bottom: 0;
    left: 0; }
  body.swal2-no-backdrop .swal2-container.swal2-bottom-end, body.swal2-no-backdrop .swal2-container.swal2-bottom-right {
    right: 0;
    bottom: 0; }

@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important; }
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden='true'] {
      display: none; }
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
      position: static !important; } }

body.swal2-toast-shown .swal2-container {
  background-color: transparent; }
  body.swal2-toast-shown .swal2-container.swal2-top {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%); }
  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; }
  body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0; }
  body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    transform: translateY(-50%); }
  body.swal2-toast-shown .swal2-container.swal2-center {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%); }
  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;
    transform: translateY(-50%); }
  body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0; }
  body.swal2-toast-shown .swal2-container.swal2-bottom {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }
  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; }

body.swal2-toast-column .swal2-toast {
  flex-direction: column;
  align-items: stretch; }
  body.swal2-toast-column .swal2-toast .swal2-actions {
    flex: 1;
    align-self: stretch;
    height: 2.2em;
    margin-top: .3125em; }
  body.swal2-toast-column .swal2-toast .swal2-loading {
    justify-content: center; }
  body.swal2-toast-column .swal2-toast .swal2-input {
    height: 2em;
    margin: .3125em auto;
    font-size: 1em; }
  body.swal2-toast-column .swal2-toast .swal2-validation-message {
    font-size: 1em; }

.swal2-container {
  position: fixed;
  z-index: 15000;
  left: 0;
  top: 0 !important;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  visibility: hidden;
  display: none; }
  .swal2-shown .swal2-container {
    display: flex;
    visibility: visible; }

.swal2-modal .button {
  appearance: none;
  position: relative;
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.75rem;
  margin: 0;
  border: 0.125rem solid currentColor;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.21429;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  width: 100%; }
  .stamped-file-uploader .swal2-modal .button {
    border: none; }
  .swal2-modal .button + [class*="btn-"] {
    margin: 0.9375rem 0 0; }
  .swal2-modal .button svg {
    display: inline-block;
    width: 1.25rem;
    height: 1rem;
    fill: currentColor; }
  @media (min-width: 992px) {
    .swal2-modal .button {
      width: auto;
      margin: 0; }
      .swal2-modal .button + [class*="btn-"] {
        margin: 0 0 0 0.9375rem; } }
  .swal2-modal .button:hover, .swal2-modal .button:focus {
    text-decoration: none; }
  .swal2-modal .button + .button {
    margin: 0 0 0 0.75rem; }
  .swal2-modal .button.swal2-confirm {
    border-color: #393939;
    background: #393939;
    color: #fff; }
    .swal2-modal .button.swal2-confirm:hover, .swal2-modal .button.swal2-confirm:focus {
      background: #fff;
      color: #393939; }
  .swal2-modal .button.swal2-cancel {
    border-color: #f1ece8; }
    .swal2-modal .button.swal2-cancel:hover, .swal2-modal .button.swal2-cancel:focus {
      color: #393939; }

.swal2-icon {
  display: flex; }

.swal2-container {
  z-index: 1000; }

.hidden {
  display: none; }

.dialog_label {
  text-align: center; }

.dialog_form {
  margin: 15px; }

.dialog_form .label_text {
  box-sizing: border-box;
  padding-right: 0.5em;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  width: 30%;
  text-align: right; }

.dialog_form .label_info {
  box-sizing: border-box;
  padding-right: 0.5em;
  font-size: 12px;
  width: 30%;
  text-align: right;
  display: inline-block; }

.dialog_form_item {
  margin: 10px 0;
  font-size: 0; }

.dialog_form_item .wide_input {
  box-sizing: border-box;
  max-width: 70%;
  width: 27em; }

.dialog_form_item .city_input {
  box-sizing: border-box;
  max-width: 70%;
  width: 17em; }

.dialog_form_item .state_input {
  box-sizing: border-box;
  max-width: 70%;
  width: 15em; }

.dialog_form_item .zip_input {
  box-sizing: border-box;
  max-width: 70%;
  width: 9em; }

.dialog_form_actions {
  text-align: right;
  padding: 0 20px 20px; }

.dialog_close_button {
  float: right;
  position: absolute;
  top: 10px;
  left: 92%;
  height: 25px; }

.dialog_close_button img {
  border: 0; }

.dialog_desc {
  padding: 10px 20px; }

/* native <dialog> element uses the ::backdrop pseudo-element */
/* dialog::backdrop, */
.dialog-backdrop {
  display: none;
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15000; }

@media screen and (min-width: 640px) {
  .dialog-backdrop {
    background: rgba(0, 0, 0, 0.75); } }

.dialog-backdrop.active {
  display: block; }

.no-scroll {
  overflow-y: auto !important; }

/* this is added to the body when a dialog is open */
.has-dialog {
  overflow: hidden; }

/* styling for alert-dialog example */
.notes {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
  min-width: 400px;
  max-width: 100%;
  width: 33%; }

.toast {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 0.25rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  position: fixed;
  top: 1rem;
  right: 1rem;
  transform: translateY(-150%);
  transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1); }

.toast.active {
  transform: translateY(0); }

/*  --------------------------------------------------------------------------  *\

    MODAL - LOADING OVERLAY

\*  --------------------------------------------------------------------------  */
.loadingOverlay-container {
  min-height: 120px;
  position: relative; }

.loadingOverlay {
  position: fixed;
  z-index: 15000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  transition: all 250ms ease-out;
  display: flex;
  align-items: center;
  min-height: 200px; }
  .loadingOverlay:after {
    position: absolute;
    z-index: 15;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    border: 0.25rem solid #393939;
    content: "";
    animation: spinner 1s ease-out 0s infinite; }
  .loadingOverlay:after {
    height: 4rem;
    width: 4rem;
    border-top-color: transparent;
    border-bottom-color: transparent; }
  .loadingOverlay:before {
    height: 2.625rem;
    width: 2.625rem;
    border-radius: 2.625rem;
    border: solid 0.125rem;
    border-color: #393939 #393939 #c9b072 #c9b072;
    content: "";
    display: block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    transform-style: preserve-3d;
    animation: spin 0.5s infinite cubic-bezier(0.69, 0.31, 0.56, 0.83); }

.loadingOverlay.ng-enter,
.loadingOverlay.ng-leave.ng-leave-active {
  opacity: 0; }

.loadingOverlay.ng-enter.ng-enter-active,
.loadingOverlay.ng-leave {
  opacity: 1; }

@keyframes spinner {
  from {
    transform: translate(-50%, -50%) rotate(0deg); }
  to {
    transform: translate(-50%, -50%) rotate(360deg); } }

@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0); }
  100% {
    transform: translateY(-50%) rotate(360deg); } }

.loadingNotification {
  left: 50%;
  position: fixed;
  text-align: center;
  top: 3rem;
  transform: translateX(-50%);
  transform-style: preserve-3d;
  transition: all 0.2s ease-out;
  z-index: 500; }

.loadingNotification.ng-hide-add-active,
.loadingNotification.ng-hide-remove {
  opacity: 0;
  top: 3.6rem;
  transform: scale(0.9) translateX(-50%); }

.loadingNotification.ng-hide-remove-active {
  opacity: 1;
  top: 3rem;
  transform: scale(1) translateX(-50%); }

.loadingNotification-label {
  background: #666;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 0.35714rem 0.78571rem; }

/*  --------------------------------------------------------------------------  *\

    COPY STYLES

    This sets our base for all the copy on the website

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    COPY STYLES

    Global styles for all basic copy styling.
    This should set all basic copy elements at the root level for each, then
    you can modify for specific components later.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    COPY - BODY STYLES

\*  --------------------------------------------------------------------------  */
body {
  color: #5a575d;
  font-family: "Work Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background: #fff; }

strong {
  font-weight: 600; }

/*  --------------------------------------------------------------------------  *\

    COPY - BLOCK ELEMENTS

\*  --------------------------------------------------------------------------  */
p, ul, ol, dl, table, blockquote, figure, address {
  margin: 0 0 1.5rem; }
  p:last-child, ul:last-child, ol:last-child, dl:last-child, table:last-child, blockquote:last-child, figure:last-child, address:last-child {
    margin-bottom: 0; }

p {
  color: #5a575d;
  font-family: "Work Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4rem; }
  @media (min-width: 992px) {
    p {
      font-size: 1rem;
      line-height: 1.6rem; } }
  p:last-child {
    margin: 0 0 1.5rem; }

p.if-length, p.if-rise {
  font-weight: 700;
  display: none; }

.length-warning p.if-length {
  display: block; }

.rise-warning p.if-rise {
  display: block; }

hr {
  margin: 1.5rem auto 0;
  height: 0.0625rem;
  max-width: 1254px;
  background: #e3e3e3;
  border: none; }
  @media (min-width: 768px) {
    hr {
      margin: 1.5rem auto; } }

.intro {
  font-size: 24; }

.disclaimer {
  color: #7d7b7e;
  font-style: italic;
  font-size: 0.75rem;
  text-align: center; }

.line-items .disclaimer {
  text-align: left; }

address {
  font-style: normal; }

.account-number {
  color: #eab444; }
  .account-number strong {
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0.5rem 0 0; }

div.med-up-only {
  display: none; }
  @media (min-width: 768px) {
    div.med-up-only {
      display: flex; } }

@media (min-width: 768px) {
  div.med-down-only {
    display: none; } }

h2 span, h4 span {
  color: #5a575d; }

/*  --------------------------------------------------------------------------  *\

    COPY - MULTI COLUMN CONTENT

\*  --------------------------------------------------------------------------  */
@media (min-width: 768px) {
  [class*="multi-col-"] {
    margin: 0 0 1.5em;
    padding: 0;
    -webkit-column-count: 2;
    -ms-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 1.875rem;
    -ms-column-gap: 1.875rem;
    column-gap: 1.875rem;
    -webkit-column-rule: 0.2rem solid #f0d9a8;
    -ms-column-rule: 0.2rem solid #f0d9a8;
    column-rule: 0.2rem solid #f0d9a8; }
  ul[class*="multi-col-"] > li, ol[class*="multi-col-"] > li {
    display: inline-block;
    width: 100%; } }

@media (min-width: 992px) {
  .multi-col-3 {
    -webkit-column-count: 3;
    -ms-column-count: 3;
    column-count: 3; }
  .multi-col-4 {
    -webkit-column-count: 4;
    -ms-column-count: 4;
    column-count: 4; } }

/*  --------------------------------------------------------------------------  *\

    COPY - BASIC LINK STYLES

    BUTTONS are located in the Components > Basic > Button file.

\*  --------------------------------------------------------------------------  */
a {
  color: #a57d2c;
  text-decoration: underline; }
  a:hover, a:focus {
    color: #8c6c28;
    text-decoration: underline; }
  address a, a[href*="tel:"] {
    text-decoration: none;
    font-weight: 700; }

/*  --------------------------------------------------------------------------  *\

    COPY - BODY STYLES

\*  --------------------------------------------------------------------------  */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: #5a575d;
  font-family: "Crimson Text", Helvetica, Arial, sans-serif;
  font-weight: 400; }
  .invert h1, .invert .h1, .invert h2, .invert .h2, .invert h3, .invert .h3, .invert h4, .invert .h4, .invert h5, .invert .h5, .invert h6, .invert .h6 {
    color: #fff; }
  h1.pad-extra, .h1.pad-extra, h2.pad-extra, .h2.pad-extra, h3.pad-extra, .h3.pad-extra, h4.pad-extra, .h4.pad-extra, h5.pad-extra, .h5.pad-extra, h6.pad-extra, .h6.pad-extra {
    padding: 2rem 0; }

h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Work Sans", Helvetica, Arial, sans-serif; }

h1, .h1 {
  font-size: 1.5rem;
  line-height: 2.4rem; }
  @media (min-width: 992px) {
    h1, .h1 {
      font-size: 2rem;
      line-height: 3.2rem; } }

h2, .h2 {
  margin: 0 0 2.5rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.875rem; }
  @media (max-width: 767.9px) {
    h2.ta-left, .h2.ta-left {
      text-align: center !important; }
      h2.ta-left.carousel-heading, .h2.ta-left.carousel-heading {
        margin: 0 0 1rem; } }
  @media (min-width: 992px) {
    h2, .h2 {
      font-size: 2rem;
      line-height: 2.4rem; }
      h2.carousel-heading, .h2.carousel-heading {
        margin: 0 0 1.5rem; } }
  h2 small, .h2 small {
    display: block;
    font-family: "Work Sans", Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    color: #5a575d;
    font-weight: 500;
    letter-spacing: 0.08rem; }
  @media (min-width: 768px) {
    h2, .h2 {
      margin: 0 0 2.0625rem;
      text-align: left; }
      h2 small, .h2 small {
        font-size: 1rem;
        margin: 0 0 0.75rem; } }

h3, .h3, h4, .h4 {
  font-size: 1rem;
  line-height: 1.6rem; }
  @media (min-width: 992px) {
    h3, .h3, h4, .h4 {
      font-size: 1.25rem;
      line-height: 2rem; } }

h5, .h5, h6, .h6 {
  margin: 0 0 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3125rem; }
  @media (min-width: 992px) {
    h5, .h5, h6, .h6 {
      font-size: 1rem;
      line-height: 1.6rem; } }

/*  --------------------------------------------------------------------------  *\

    COPY - LIST STYLES

    Below are resets that will make working with custom bullets and numbers
    much easier.

\*  --------------------------------------------------------------------------  */
ul, ol {
  list-style: none; }
  ul li, ol li {
    position: relative;
    z-index: 0;
    padding: 0 0 0 1.25rem; }
    ul li:before, ol li:before {
      position: absolute;
      z-index: 0;
      left: 0;
      top: 0.75em;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); }
    ul li + li, ol li + li {
      margin: 0.625rem 0 0; }
  ul ul, ul ol, ol ul, ol ol {
    margin-bottom: 0; }

/*  --------------------------------------------------------------------------  *\

    IMPORTS FOR EACH LIST DEFINITION

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    COPY - LISTS - UNORDERED

\*  --------------------------------------------------------------------------  */
ul.multiCheckbox--controls {
  display: none; }

ul > li:before {
  width: 0.25rem;
  height: 0.25rem;
  background: #eab444;
  border-radius: 0.25rem;
  content: ""; }

ul ul > li:before {
  border-radius: 0; }

ul ul ul > li:before {
  -webkit-transform: translate(0, -50%) rotate(45deg);
  -ms-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg); }

/*  --------------------------------------------------------------------------  *\

    COPY - LISTS - ORDERED

\*  --------------------------------------------------------------------------  */
ol {
  counter-reset: grv-counter; }
  ol > li {
    counter-increment: grv-counter; }
    ol > li:before {
      content: counter(grv-counter) ".";
      font-size: 0.75rem;
      font-weight: 600;
      top: 1em; }
  ol ol {
    margin: 0 0 0 2em; }
    ol ol > li:before {
      content: counter(grv-counter, lower-alpha) "."; }
    ol ol ol > li:before {
      content: counter(grv-counter, lower-roman) "."; }
  ol.alpha > li:before {
    content: counter(grv-counter, upper-alpha) "."; }

/*  --------------------------------------------------------------------------  *\

    COPY - LISTS - DEFINITION

\*  --------------------------------------------------------------------------  */
dl dt {
  font-size: 1.8;
  font-weight: bold; }
  dl dt ~ dt {
    margin: .5em 0 0; }

dl dd {
  padding: 0 0 0 1em; }

/*  --------------------------------------------------------------------------  *\

    COPY - ALIGNMENTS

\*  --------------------------------------------------------------------------  */
.ta-left {
  text-align: left !important; }

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

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

/*  --------------------------------------------------------------------------  *\

    STRUCTURAL ELEMENTS

    The structural elements come next and set up globally used site elements
    like the grid, header, footer, sections, and backgrounds.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    GRID

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    CONTAINER

\*  --------------------------------------------------------------------------  */
.container {
  margin: 0 auto;
  padding: 0 0.9375rem;
  max-width: 1254px;
  width: 100%; }
  @media (min-width: 992px) {
    .container {
      width: 95%; } }
  @media (min-width: 1200px) {
    .container {
      width: 90%; } }
  @media (min-width: 992px) {
    .container {
      padding: 0 1rem; } }

/*  --------------------------------------------------------------------------  *\

    ROWS

    This sets up our rows used to break up content into columns.

\*  --------------------------------------------------------------------------  */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: row wrap;
  width: calc(100% + 1.5rem);
  margin: 0 -0.9375rem;
  /*  ----------------------------------------------------------------------  *\
    
        BACK TO BACK ROWS
    
        Set the margin when rows are next to each other.
    
    \*  ----------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\
    
        ALIGNMENTS
    
        Change the default alignment to different alignments.
    
    \*  ----------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\
    
        MARGINS
    
        Change the default margins.
    
    \*  ----------------------------------------------------------------------  */ }
  @media (min-width: 768px) {
    .row {
      width: calc(100% + 2rem);
      margin: 0 -1rem; } }
  .row + .row {
    margin-top: 1.875rem; }
    @media (min-width: 768px) {
      .row + .row {
        margin-top: 5.625rem; } }
  .row.va-center {
    align-items: center; }
  .row.va-top {
    align-items: flex-start; }
  .row.va-bottom {
    align-items: flex-end; }
  .row.ha-center {
    justify-content: center; }
  .row.ha-left {
    justify-content: flex-start; }
  .row.ha-right {
    justify-content: flex-end; }
  .row.m-b {
    margin-bottom: 1.5rem; }
    @media (min-width: 768px) {
      .row.m-b {
        margin-bottom: 1.875rem; } }
  .row.m-t-xtra {
    margin-top: 3.125rem; }
    @media (min-width: 768px) {
      .row.m-t-xtra {
        margin-top: 4.6875rem; } }
    @media (min-width: 992px) {
      .row.m-t-xtra {
        margin-top: 6.25rem; } }

/*  --------------------------------------------------------------------------  *\

    COLUMNS

    This sets up the base for all columns.

\*  --------------------------------------------------------------------------  */
[class*="col-"] {
  padding: 0 0.75rem;
  margin: 0;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  order: 1; }
  @media (min-width: 768px) {
    [class*="col-"] {
      padding: 0 0.9375rem; } }

/*  --------------------------------------------------------------------------  *\

    GENERATE COLUMNS

    This mixin generates all columns creating XS-LG with 12 columns.

\*  --------------------------------------------------------------------------  */
.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

@media (min-width: 576px) {
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; } }

@media (min-width: 768px) {
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; } }

@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; } }

@media (min-width: 1200px) {
  .col-xl-1 {
    width: 8.33333%; }
  .col-xl-2 {
    width: 16.66667%; }
  .col-xl-3 {
    width: 25%; }
  .col-xl-4 {
    width: 33.33333%; }
  .col-xl-5 {
    width: 41.66667%; }
  .col-xl-6 {
    width: 50%; }
  .col-xl-7 {
    width: 58.33333%; }
  .col-xl-8 {
    width: 66.66667%; }
  .col-xl-9 {
    width: 75%; }
  .col-xl-10 {
    width: 83.33333%; }
  .col-xl-11 {
    width: 91.66667%; }
  .col-xl-12 {
    width: 100%; } }

.gap-xs-1 {
  margin-left: 8.33333%; }

.gap-xs-2 {
  margin-left: 16.66667%; }

.gap-xs-3 {
  margin-left: 25%; }

.gap-xs-4 {
  margin-left: 33.33333%; }

.gap-xs-5 {
  margin-left: 41.66667%; }

.gap-xs-6 {
  margin-left: 50%; }

.gap-xs-7 {
  margin-left: 58.33333%; }

.gap-xs-8 {
  margin-left: 66.66667%; }

.gap-xs-9 {
  margin-left: 75%; }

.gap-xs-10 {
  margin-left: 83.33333%; }

.gap-xs-11 {
  margin-left: 91.66667%; }

.gap-xs-12 {
  margin-left: 100%; }

@media (min-width: 576px) {
  .gap-sm-1 {
    margin-left: 8.33333%; }
  .gap-sm-2 {
    margin-left: 16.66667%; }
  .gap-sm-3 {
    margin-left: 25%; }
  .gap-sm-4 {
    margin-left: 33.33333%; }
  .gap-sm-5 {
    margin-left: 41.66667%; }
  .gap-sm-6 {
    margin-left: 50%; }
  .gap-sm-7 {
    margin-left: 58.33333%; }
  .gap-sm-8 {
    margin-left: 66.66667%; }
  .gap-sm-9 {
    margin-left: 75%; }
  .gap-sm-10 {
    margin-left: 83.33333%; }
  .gap-sm-11 {
    margin-left: 91.66667%; }
  .gap-sm-12 {
    margin-left: 100%; } }

@media (min-width: 768px) {
  .gap-md-1 {
    margin-left: 8.33333%; }
  .gap-md-2 {
    margin-left: 16.66667%; }
  .gap-md-3 {
    margin-left: 25%; }
  .gap-md-4 {
    margin-left: 33.33333%; }
  .gap-md-5 {
    margin-left: 41.66667%; }
  .gap-md-6 {
    margin-left: 50%; }
  .gap-md-7 {
    margin-left: 58.33333%; }
  .gap-md-8 {
    margin-left: 66.66667%; }
  .gap-md-9 {
    margin-left: 75%; }
  .gap-md-10 {
    margin-left: 83.33333%; }
  .gap-md-11 {
    margin-left: 91.66667%; }
  .gap-md-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .gap-lg-1 {
    margin-left: 8.33333%; }
  .gap-lg-2 {
    margin-left: 16.66667%; }
  .gap-lg-3 {
    margin-left: 25%; }
  .gap-lg-4 {
    margin-left: 33.33333%; }
  .gap-lg-5 {
    margin-left: 41.66667%; }
  .gap-lg-6 {
    margin-left: 50%; }
  .gap-lg-7 {
    margin-left: 58.33333%; }
  .gap-lg-8 {
    margin-left: 66.66667%; }
  .gap-lg-9 {
    margin-left: 75%; }
  .gap-lg-10 {
    margin-left: 83.33333%; }
  .gap-lg-11 {
    margin-left: 91.66667%; }
  .gap-lg-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .gap-xl-1 {
    margin-left: 8.33333%; }
  .gap-xl-2 {
    margin-left: 16.66667%; }
  .gap-xl-3 {
    margin-left: 25%; }
  .gap-xl-4 {
    margin-left: 33.33333%; }
  .gap-xl-5 {
    margin-left: 41.66667%; }
  .gap-xl-6 {
    margin-left: 50%; }
  .gap-xl-7 {
    margin-left: 58.33333%; }
  .gap-xl-8 {
    margin-left: 66.66667%; }
  .gap-xl-9 {
    margin-left: 75%; }
  .gap-xl-10 {
    margin-left: 83.33333%; }
  .gap-xl-11 {
    margin-left: 91.66667%; }
  .gap-xl-12 {
    margin-left: 100%; } }

/*  --------------------------------------------------------------------------  *\

    SETTING MARGIN SPECIFICS

    This will fix margins when two elements are next to each other with a 12
    column count.

\*  --------------------------------------------------------------------------  */
.col-xs-12 + .col-xs-12 {
  margin-top: 0.25rem; }

@media (min-width: 576px) {
  .col-xs-12 + .col-xs-12[class*="col-sm-"] {
    margin-top: 0; } }

@media (min-width: 768px) {
  .col-xs-12 + .col-xs-12[class*="col-md-"] {
    margin-top: 0; } }

@media (min-width: 992px) {
  .col-xs-12 + .col-xs-12[class*="col-lg-"] {
    margin-top: 0; } }

@media (min-width: 576px) {
  .col-sm-12 + .col-sm-12 {
    margin-top: 1.5rem; } }

@media (min-width: 768px) {
  .col-sm-12 + .col-sm-12[class*="col-md-"] {
    margin-top: 0; } }

@media (min-width: 576px) {
  .col-sm-12 + .col-xs-12[class*="col-lg-"] {
    margin-top: 0; } }

@media (min-width: 768px) {
  .col-md-12 + .col-md-12 {
    margin-top: 1.875rem; } }

@media (min-width: 992px) {
  .col-md-12 + .col-md-12[class*="col-lg-"] {
    margin-top: 0; } }

@media (min-width: 992px) {
  .col-lg-12 + .col-lg-12 {
    margin-top: 1.875rem; } }

/*  --------------------------------------------------------------------------  *\

    ORDER

    Ability to change the columns order to move a later element to the front.

\*  --------------------------------------------------------------------------  */
.col-xs-pull {
  order: 0; }

.col-xs-push {
  order: 2; }

.col-xs-reset {
  order: 1; }

@media (min-width: 576px) {
  .col-sm-pull {
    order: 0; }
  .col-sm-push {
    order: 2; }
  .col-sm-reset {
    order: 1; } }

@media (min-width: 768px) {
  .col-md-pull {
    order: 0; }
  .col-md-push {
    order: 2; }
  .col-md-reset {
    order: 1; }
  .col-md-pad-left {
    padding-left: 8.33333%; }
  .col-md-pad-right {
    padding-right: 8.33333%; } }

@media (min-width: 992px) {
  .col-lg-pull {
    order: 0; }
  .col-lg-push {
    order: 2; }
  .col-lg-reset {
    order: 1; } }

/*  --------------------------------------------------------------------------  *\

    FLOATS

    This sets up float classes that can be used to float elements in conjunction
    with the columns classes to set the widths.

\*  --------------------------------------------------------------------------  */
.float-left, .float-right {
  margin: 0 0 1.875rem; }

@media (min-width: 768px) {
  .float-left {
    float: left;
    padding: 0;
    margin: 0 1.875rem 1.875rem 0; }
  .float-right {
    float: right;
    padding: 0;
    margin: 0 0 1.875rem 1.875rem; } }

/*  --------------------------------------------------------------------------  *\

    HEADER

\*  --------------------------------------------------------------------------  */
body {
  padding: 5.5rem 0 0; }
  @media (min-width: 992px) {
    body {
      padding: 0; } }

body > header {
  border-top: 1.75rem solid #5a575d;
  border-bottom: 0.0625rem solid #e3e3e3;
  background: #fff;
  color: #eab444;
  /*  ----------------------------------------------------------------------  *\

        POSITIONING OPTIONS

        @import 'header/positioning/_absolute-top';
        @import 'header/positioning/_fixed-top';
        @import 'header/positioning/_fixed-left';
        @import 'header/positioning/_relative';

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    HEADER - POTIION - STICKY TOP

\*  --------------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\

        LAYOUT OPTIONS

        @import 'header/layouts/_vertical';
        @import 'header/layouts/vertical/_w-utility-nav';
        @import 'header/layouts/vertical/_w-utility-bar';
        @import 'header/layouts/vertical/_w-toggle';

        @import 'header/layouts/horizontal/has-util-nav';

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    HEADER - LAYOUT - HORIZONTAL

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    HEADER - LAYOUT - HORIZONTAL - HAS UTILITY BAR

\*  --------------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\

        LOGO

        @import 'header/logo/_img-tagline';
        @import 'header/logo/_svg-tagline';
        @import 'header/logo/_text';
        @import 'header/logo/img';

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    HEADER - LOGO - SVG

\*  --------------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\

        NAVIGATIONS

        @import 'header/navs/vertical/_root-only';
        @import 'header/navs/vertical/_dropdown';
        @import 'header/navs/vertical/_utility';

        @import 'header/na≈vs/horizontal/_root-only';
        @import 'header/navs/horizontal/dropdown';

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    HEADER - NAVIGATION - TOGGLE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    HEADER - NAVIGATION - MEGA MENU

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    HEADER - NAVIGATION - HORIZONTAL - ACCOUNT NAV

\*  --------------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\

        SEARCH

    \*  ----------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\

        COMPONENTS

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    HEADER - CARD

\*  --------------------------------------------------------------------------  */ }
  @media (min-width: 768px) {
    body > header {
      border-top: 2rem solid #5a575d; } }
  @media (min-width: 992px) {
    body > header {
      border-top: 2rem solid #5a575d;
      background: #fff;
      color: #eab444; } }
  @media print {
    body > header {
      display: none; } }
  body > header {
    width: 100%; }
    @media (max-width: 991.9px) {
      body > header {
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0; } }
    @media (min-width: 992px) {
      body > header {
        position: relative;
        position: -webkit-sticky;
        position: sticky;
        z-index: 1000; }
        @supports (position: -webkit-sticky) {
          body > header {
            top: 0; } }
        @supports (position: sticky) {
          body > header {
            top: 0; } } }
  body > header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    padding: 0.625rem 0.5rem; }
    @media (min-width: 992px) {
      body > header .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: row wrap;
        padding: 1rem 1rem 0; } }
  body > header > div {
    position: relative; }
  body > header .logo {
    display: block;
    width: 8.25rem;
    height: 2rem;
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }
    @media (max-width: 991.9px) {
      body > header .logo {
        margin-left: 1.875rem; } }
    @media (min-width: 992px) {
      body > header .logo {
        width: 12.5rem;
        height: 3.4375rem; } }
    body > header .logo svg {
      display: block;
      width: 100%;
      height: auto; }
  body > header .toggle-trigger {
    position: relative;
    width: 2.375rem;
    height: 2.375rem;
    float: left;
    margin: 0; }
    body > header .toggle-trigger .bar {
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      height: 0.125rem;
      width: 1.6875rem;
      background: #5a575d;
      transition: transform 0.25s; }
      body > header .toggle-trigger .bar:nth-child(1) {
        transform: translate(-50%, -50%) translate(0, -0.5625rem); }
      body > header .toggle-trigger .bar:nth-child(2) {
        transform: translate(-50%, -50%) translate(-0.25rem, 0);
        width: 1.0625rem; }
      body > header .toggle-trigger .bar:nth-child(3) {
        transform: translate(-50%, -50%) translate(0, 0.5625rem); }
    @media (min-width: 992px) {
      body > header .toggle-trigger {
        display: none; } }
  body > header .toggle {
    position: absolute;
    width: 1px !important;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0); }
    @media (min-width: 992px) {
      body > header .toggle {
        display: none; } }
    body > header .toggle:checked + .toggle-trigger .bar:nth-child(1) {
      width: 0; }
    body > header .toggle:checked + .toggle-trigger .bar:nth-child(2) {
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg);
      width: 1.6875rem; }
    body > header .toggle:checked + .toggle-trigger .bar:nth-child(3) {
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg); }
  body > header nav {
    width: 100%; }
    body > header nav li {
      z-index: auto !important; }
    @media (max-width: 991.9px) {
      body > header nav {
        position: absolute;
        left: 0;
        top: 3.625rem;
        -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
        background: #fff;
        height: calc(100vh - 3.4375rem);
        overflow-x: hidden;
        overflow-y: auto;
        transition: transform 0.25s;
        border-top: 0.0625rem solid #e3e3e3; } }
    @media (min-width: 992px) {
      body > header nav {
        height: auto;
        width: 100%;
        margin: 0.75rem 0 0;
        border-top: 0.0625rem solid #e3e3e3; } }
    body > header nav a, body > header nav label, body > header nav button {
      display: block;
      padding: 0.75rem 1rem;
      color: #5a575d;
      font-size: 0.875rem;
      font-weight: 400;
      line-height: 1.5;
      white-space: nowrap;
      text-transform: uppercase; }
      body > header nav a:hover, body > header nav a:focus, body > header nav label:hover, body > header nav label:focus, body > header nav button:hover, body > header nav button:focus {
        color: #5a575d; }
        body > header nav a:hover .dropdown-arrow, body > header nav a:focus .dropdown-arrow, body > header nav label:hover .dropdown-arrow, body > header nav label:focus .dropdown-arrow, body > header nav button:hover .dropdown-arrow, body > header nav button:focus .dropdown-arrow {
          transform: rotate(180deg); }
  @media (max-width: 991.9px) {
    body > header #headerToggleNav:checked ~ nav {
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      transform: translate(0, 0); } }
  body > header .main {
    position: relative;
    z-index: 0;
    /*  --------------------------------------------------------------------------  *\

    HEADER - NAVIGATION - MEGA MENU - TOGGLE HEADER

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    HEADER - NAVIGATION - MEGA MENU - FULL HEADER

\*  --------------------------------------------------------------------------  */ }
    body > header .main input[type="checkbox"] {
      position: absolute;
      width: 1px !important;
      height: 1px;
      padding: 0;
      margin: -1px;
      border: 0;
      overflow: hidden;
      clip: rect(0, 0, 0, 0); }
    @media (max-width: 991.9px) {
      body > header .main {
        margin: 0; }
        body > header .main a, body > header .main label, body > header .main button {
          background: #fff;
          padding: 0.75rem 1rem; }
          body > header .main a .dropdown-arrow, body > header .main label .dropdown-arrow, body > header .main button .dropdown-arrow {
            display: none; }
        body > header .main .card {
          display: none; }
        body > header .main > li {
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: space-between;
          align-items: stretch;
          flex-flow: row wrap; }
          body > header .main > li a {
            display: none; }
            body > header .main > li a:only-child {
              display: block;
              width: 100%; }
          body > header .main > li li a {
            width: 100%; }
          body > header .main > li label {
            -webkit-box-flex: 0 0 auto;
            -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-flow: row nowrap;
            width: 100%;
            margin: auto; }
            body > header .main > li label svg {
              width: 1rem;
              height: 1rem;
              transition: .25s; }
              body > header .main > li label svg * {
                stroke: #5a575d;
                stroke-width: 0.0625rem; }
        body > header .main li > div, body > header .main li > div ul ul {
          position: absolute;
          z-index: 1000;
          left: 100%;
          top: 0;
          -webkit-box-flex: 0 0 auto;
          -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto;
          width: 100%;
          height: 100%;
          overflow-y: auto;
          overflow-x: hidden;
          background: #fff;
          transition: transform 0.25s linear; }
        body > header .main ul > li:first-child label {
          justify-content: flex-start;
          border-bottom: 0.0625rem solid #e3e3e3; }
          body > header .main ul > li:first-child label svg {
            margin: 0 0.625rem 0 0; }
        body > header .main ul > li:nth-child(2) > a {
          padding: 1.25rem 1rem;
          font-weight: 600;
          font-size: 1rem;
          line-height: 1.3;
          color: #f1e6d6; }
        body > header .main .toggle-text {
          display: none; }
        body > header .main input:checked ~ label svg {
          transform: rotate(180deg); }
        body > header .main input:checked ~ div, body > header .main input:checked ~ ul {
          -webkit-transform: translate(-100%, 0);
          -ms-transform: translate(-100%, 0);
          transform: translate(-100%, 0); } }
    @media (min-width: 992px) {
      body > header .main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: stretch;
        flex-flow: row nowrap;
        margin: 0 -0.5rem; }
        body > header .main #proadvantage {
          display: none; }
        body > header .main a {
          font-size: 0.875rem;
          padding: 1.5rem 0.5rem 1rem; }
          body > header .main a .dropdown-arrow {
            width: 0.5rem;
            height: 0.5rem;
            margin: 0 0 0 0.25rem;
            transition: all .25s; }
        body > header .main input[type="checkbox"]:focus + label {
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-flow: row nowrap; }
        body > header .main input[type="checkbox"]:checked + label {
          display: none; }
        body > header .main input[type="checkbox"]:checked ~ div {
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: flex-start;
          align-items: flex-start;
          align-content: flex-start;
          flex-flow: row nowrap;
          visibility: visible;
          z-index: 100; }
        body > header .main > li > div {
          visibility: hidden;
          opacity: 0;
          transition: .2s .4s ease-in-out;
          position: absolute;
          z-index: -1;
          left: 50%;
          top: 100%;
          -webkit-transform: translate(-50%, 0);
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: center;
          align-items: flex-start;
          flex-flow: row nowrap;
          background: #fff;
          padding: 1.5rem 0;
          width: 100%; }
          body > header .main > li > div:before {
            position: absolute;
            z-index: -1;
            left: 50%;
            top: 0;
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            height: 100%;
            width: 100vw;
            background: #fff;
            border-top: 0.0625rem solid #e3e3e3;
            border-bottom: 0.0625rem solid #e3e3e3;
            display: block;
            content: "";
            transition: 0s 0s; }
          body > header .main > li > div a {
            padding: 0.75rem 1rem; }
          body > header .main > li > div input[type="checkbox"] {
            position: absolute;
            width: 1px !important;
            height: 1px;
            padding: 0;
            margin: -1px;
            border: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0); }
          body > header .main > li > div > ul {
            width: 66.667%;
            display: grid;
            padding: 0 2rem 0 0;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto 1fr;
            column-gap: 2rem;
            -webkit-box-flex: 0 0 auto;
            -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            overflow: hidden;
            position: relative;
            border-right: 0.125rem solid #e3e3e3; }
            body > header .main > li > div > ul > li {
              display: block; }
              body > header .main > li > div > ul > li > a {
                text-transform: uppercase;
                font-weight: 600;
                letter-spacing: .1em;
                padding: 0.75rem 1rem 0;
                color: #5a575d; }
                body > header .main > li > div > ul > li > a:only-child {
                  padding: 0.75rem 1rem; }
                  body > header .main > li > div > ul > li > a:only-child:after {
                    display: inline-block;
                    position: relative;
                    width: 0.25rem;
                    height: 0.25rem;
                    border-right: 0.125rem solid currentColor;
                    border-top: 0.125rem solid currentColor;
                    transform: translate(0.625rem, -0.125rem) rotate(45deg); }
              body > header .main > li > div > ul > li.no-children > a {
                font-weight: normal;
                padding: 0.75rem 1rem;
                letter-spacing: 0;
                font-size: 0.875rem; }
              body > header .main > li > div > ul > li:nth-child(1), body > header .main > li > div > ul > li:nth-child(2) {
                display: none; }
            body > header .main > li > div > ul a {
              transition-duration: 0s;
              white-space: normal; }
            body > header .main > li > div > ul ul {
              margin: 0.5rem 0; }
              body > header .main > li > div > ul ul li:nth-child(1), body > header .main > li > div > ul ul li:nth-child(2) {
                display: none; }
              body > header .main > li > div > ul ul > li ul {
                width: 100%;
                display: flex;
                flex-direction: column; }
                body > header .main > li > div > ul ul > li ul > li {
                  background: linear-gradient(to right, #fff 15px, #e3e3e3 15px 16px, #fff 16px 100%);
                  padding-left: 1.25rem; }
                  body > header .main > li > div > ul ul > li ul > li a {
                    padding: 0.3125rem;
                    color: #999999;
                    font-size: .9rem; }
              body > header .main > li > div > ul ul a {
                padding: 0.5rem 1rem; }
        body > header .main > li:hover {
          cursor: pointer; }
          body > header .main > li:hover > div {
            visibility: visible;
            opacity: 1;
            transition-delay: .2s; }
            body > header .main > li:hover > div:before {
              transition-delay: 0s; }
            body > header .main > li:hover > div > ul:before, body > header .main > li:hover > div > ul:after {
              transition-delay: 0s; }
          body > header .main > li:hover > ul {
            display: block; }
        body > header .main > li#mainNavItemResources > div > ul {
          width: 100%;
          grid-template-columns: 1fr 1fr 1fr;
          padding: 0;
          border-right: 0; }
        body > header .main label {
          display: none;
          position: absolute;
          left: 50%;
          top: 100%;
          -webkit-transform: translate(-50%, 0);
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
          background: #eab444;
          color: #fff;
          font-size: 0.75rem; }
          body > header .main label svg {
            order: 1;
            fill: currentColor;
            width: 1.5em;
            height: 1.5em;
            margin: 0 0 0 .5em; }
        body > header .main .card-w {
          width: 33.333%;
          -webkit-box-flex: 0 0 auto;
          -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto;
          padding: 0 0 0 2rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: center;
          align-items: flex-start;
          flex-flow: row nowrap; }
        body > header .main .card {
          width: 100%;
          background: transparent;
          border: none;
          max-width: 350px;
          -webkit-box-flex: 0 0 auto;
          -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto;
          margin: 0 auto; }
          body > header .main .card a {
            transition-duration: 0s; }
          body > header .main .card .img-w {
            padding: 50% 0 0;
            margin: 0 0 1.25rem; }
          body > header .main .card .cnt {
            color: #5a575d;
            display: block; }
          body > header .main .card .btn-secondary, body > header .main .card .btn-secondary {
            width: auto;
            margin: 1rem 0 0; }
        body > header .main #subNavItem81,
        body > header .main #subNavItem82,
        body > header .main #subNavItem83 {
          display: none; }
        body > header .main #mainNavItemInspiration > div > ul {
          grid-template-columns: 1fr 1fr 1fr;
          border: 0;
          width: 100%; }
        body > header .main #mainNavItemCommercial > div > ul {
          border: 0;
          grid-template-columns: .75fr 1fr 1fr;
          grid-template-rows: 1fr 1fr 1fr 2fr;
          column-gap: 2rem;
          width: 100%; }
          body > header .main #mainNavItemCommercial > div > ul > li {
            width: 100%; }
            body > header .main #mainNavItemCommercial > div > ul > li:nth-child(4) > ul {
              column-count: 2; }
            body > header .main #mainNavItemCommercial > div > ul > li:nth-child(3), body > header .main #mainNavItemCommercial > div > ul > li:nth-child(4) {
              grid-row-start: 1;
              grid-row-end: span 5; }
        body > header .main #mainNavItemProjectResources > div > ul {
          grid-template-columns: .75fr 1fr 1fr;
          border: 0;
          width: 100%; }
        body > header .main #mainNavItem36 > div > ul li:nth-child(3) {
          grid-column-start: 1;
          grid-column-end: span 1; }
        body > header .main #mainNavItem36 > div > ul li:nth-child(4) {
          grid-column-start: 1;
          grid-column-end: span 1; }
        body > header .main #mainNavItem36 > div > ul li:nth-child(5) {
          grid-column-start: 2;
          grid-column-end: span 1;
          grid-row-start: 1; }
        body > header .main #mainNavItem36 > div > ul li:nth-child(6) {
          grid-column-start: 2;
          grid-column-end: span 1; }
        body > header .main #mainNavItem36 > div > ul li:nth-child(7) {
          grid-column-start: 2;
          grid-column-end: span 1; }
        body > header .main #mainNavItem36 > div > ul li:nth-child(8) {
          grid-column-start: 2;
          grid-column-end: span 1; }
        body > header .main #mainNavItem32 > div > ul {
          grid-template-columns: 2fr; }
          body > header .main #mainNavItem32 > div > ul li:nth-child(3) {
            grid-column-start: 1;
            grid-column-end: span 2; }
          body > header .main #mainNavItem32 > div > ul li:nth-child(4) {
            grid-row-end: 1; }
          body > header .main #mainNavItem32 > div > ul ul {
            column-count: 3;
            column-gap: 1rem; }
            body > header .main #mainNavItem32 > div > ul ul li:nth-child(n + 3) {
              display: inline-block;
              width: 100%; } }
    @media (min-width: 1200px) {
      body > header .main {
        margin: 0 -1rem; }
        body > header .main a {
          padding: 1.5rem 1rem 1rem; } }
  @media (max-width: 991.9px) {
    body > header .user {
      border-top: 0.0625rem solid #e3e3e3;
      margin: 0.75rem 0 0;
      padding: 0.75rem 0 0; }
      body > header .user #proadvantage {
        display: none; }
      body > header .user #orderStatus {
        width: fit-content;
        padding: 0.75rem;
        margin-left: 1rem; }
      body > header .user a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-flow: row nowrap; }
      body > header .user svg {
        width: 1.5rem;
        height: 1.5rem;
        margin: 0 1rem 0 0; }
        body > header .user svg path {
          fill: #ef9662; }
      body > header .user img {
        display: none; } }
  @media (min-width: 992px) {
    body > header .user {
      position: absolute;
      right: 4.875rem;
      top: 2.625rem;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      flex-flow: row nowrap;
      column-gap: 14px;
      right: 16px; }
      body > header .user .btn-secondary, body > header .user > li, body > header .user .toggle-cart {
        position: static;
        transform: unset;
        height: auto;
        font-size: 14px; }
      body > header .user .toggle-cart, body > header .user .account-li a {
        padding: 0; }
      body > header .user .toggle-cart {
        position: relative;
        top: unset;
        right: unset; }
      body > header .user .cart-quantity {
        right: -14px; }
      body > header .user .space-for-cart {
        width: 24px; }
      body > header .user img {
        width: 50px; }
      body > header .user a {
        display: block;
        font-size: 0.75rem;
        line-height: 1.3;
        text-transform: capitalize; }
        body > header .user a.sm {
          padding: 0.75rem; }
      body > header .user li div {
        background-color: #f6f6f6;
        padding: 1.3125rem 3.125rem; }
      body > header .user li:first-child a {
        padding: 0.625rem;
        color: #000;
        border-color: #ef9662;
        text-transform: none;
        font-weight: normal; }
        body > header .user li:first-child a:hover, body > header .user li:first-child a:focus {
          text-decoration: none; }
      body > header .user li:nth-child(n+2) {
        margin: 0 0 0 0.5rem; }
      body > header .user li:last-child {
        margin: 0 0 0 0.25rem; }
        body > header .user li:last-child a {
          padding: 0.375rem;
          transition: all .1s; }
          body > header .user li:last-child a:hover, body > header .user li:last-child a:focus {
            color: #312e34;
            font-weight: 600;
            text-decoration: none; }
          body > header .user li:last-child a:active {
            color: #7d7b7e;
            font-weight: normal; }
      body > header .user svg {
        width: 1.25rem;
        height: 1.25rem;
        fill: #eab444;
        transition: all .25s;
        vertical-align: bottom; }
      body > header .user span {
        margin-left: 0.5rem; } }
  body > header .toggle-cart {
    display: block;
    width: auto;
    height: 2.375rem;
    padding: 0.4375rem;
    text-decoration: none;
    margin-left: auto; }
    body > header .toggle-cart:hover .cart-text, body > header .toggle-cart:focus .cart-text {
      color: #312e34;
      font-weight: 600; }
    body > header .toggle-cart:active .cart-text {
      color: #7d7b7e;
      font-weight: normal; }
    body > header .toggle-cart svg {
      display: inline-block;
      width: 1.5rem;
      height: 1.5rem;
      fill: #eab444;
      transition: all .25s;
      vertical-align: bottom; }
      body > header .toggle-cart svg:hover, body > header .toggle-cart svg:focus {
        fill: #f1e6d6; }
      body > header .toggle-cart svg * {
        stroke: #fff;
        stroke-width: 0;
        stroke-linecap: round; }
    body > header .toggle-cart .cart-text {
      margin-left: 0.1875rem;
      color: #5a575d;
      text-decoration: none;
      font-size: 0.75rem;
      font-weight: 400;
      text-transform: capitalize;
      transition: all .25s; }
      @media (max-width: 767.9px) {
        body > header .toggle-cart .cart-text {
          display: none; } }
    @media (min-width: 992px) {
      body > header .toggle-cart {
        position: absolute;
        right: 4.875rem;
        top: 2.625rem;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        z-index: 100; } }
  body > header .cart-quantity {
    position: absolute;
    z-index: 100;
    right: 40px;
    top: 5px;
    -webkit-transform: translate(-15%, 15%);
    -ms-transform: translate(-15%, 15%);
    transform: translate(-15%, 15%);
    background: #eab444;
    color: #fff;
    border-radius: 100%;
    width: 1.5em;
    height: 1.5em;
    font-size: .75em;
    text-align: center;
    line-height: 1.7; }
    @media (min-width: 992px) {
      body > header .cart-quantity {
        position: absolute;
        z-index: 100;
        right: -10px;
        top: -5px;
        -webkit-transform: translate(-15%, 15%);
        -ms-transform: translate(-15%, 15%);
        transform: translate(-15%, 15%);
        display: block; } }
    @media (max-width: 767.9px) {
      body > header .cart-quantity {
        position: absolute;
        z-index: 100;
        right: 5px;
        top: 5px;
        -webkit-transform: translate(-15%, 15%);
        -ms-transform: translate(-15%, 15%);
        transform: translate(-15%, 15%);
        display: block; } }
  body > header .promo-bar {
    color: #fff;
    position: absolute;
    left: 50%;
    top: -1rem;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap; }
    @media (min-width: 768px) {
      body > header .promo-bar {
        font-size: 0.875rem; } }
    body > header .promo-bar a {
      color: #fff;
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-left: 4px;
      margin: 0 0 0 1.875rem;
      text-decoration: underline; }
      body > header .promo-bar a:empty {
        display: none; }
      body > header .promo-bar a:hover, body > header .promo-bar a:focus {
        text-decoration: underline;
        color: #eab444; }
      @media (max-width: 767.9px) {
        body > header .promo-bar a {
          display: none; } }
  body > header .card .img-w {
    margin: 0; }
  body > header .card .title {
    font-size: 1rem;
    line-height: 1.31;
    font-weight: 600;
    margin: 0.5rem 0 0; }
  body > header .card p {
    margin: 0.5rem 0 0; }
  body > header .card .btn-primary {
    margin: 0.75rem 0 0;
    padding: 0.75rem 1.25rem; }

/*  --------------------------------------------------------------------------  *\

    HEADER - SEARCH

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    HEADER - SEARCH > TOGGLE

\*  --------------------------------------------------------------------------  */
.toggle-search {
  display: block;
  width: 3.4375rem;
  height: 3.4375rem;
  position: absolute;
  right: 3.4375rem;
  top: 0;
  padding: 0.9375rem 0.9375rem; }
  .toggle-search svg {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    fill: none; }
    .toggle-search svg * {
      stroke: #000;
      stroke-width: 0.125rem;
      stroke-linecap: round; }
  @media (min-width: 992px) {
    .toggle-search {
      display: none; } }

.quick-search {
  /*  --------------------------------------------------------------------------  *\

    HEADER - SEARCH - FORM

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    HEADER - SEARCH - RESULTS

\*  --------------------------------------------------------------------------  */ }
  @media (max-width: 991.9px) {
    .quick-search {
      width: 100%;
      padding: 1rem 1rem 0.75rem;
      background: #fff;
      transition: all 0.25s linear; }
      #headerToggleSearch:checked ~ .quick-search {
        top: 100%;
        transform: translate(-100%, 0); } }
  @media (min-width: 992px) {
    .quick-search {
      position: absolute;
      z-index: 1;
      right: 28.625rem;
      top: 2.625rem;
      -webkit-transform: translate(-5%, -50%);
      -ms-transform: translate(-5%, -50%);
      transform: translate(-5%, -50%);
      height: 2.75rem;
      width: 30%;
      max-width: 24.6875rem;
      -webkit-box-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto; }
      .quick-search.not-logged {
        right: 23.5rem; }
      .quick-search:focus-within .results:not(:empty) {
        display: block; } }
  .quick-search .form select {
    appearance: none;
    -webkit-appearance: none;
    background: url(../img/dropdown-caret.png) no-repeat 92.5% 50%/16px; }
  .quick-search .form .form-el {
    position: relative; }
  .quick-search .form input {
    width: 100%;
    font-size: 0.875rem;
    -webkit-box-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    border: 0.0625rem solid #e3e3e3;
    padding: 0.8125rem 0.75rem; }
    .quick-search .form input:focus {
      border-color: #ef9662; }
    .quick-search .form input::placeholder {
      color: #bbadaa;
      font-weight: 400;
      font-style: italic; }
  .quick-search .form button {
    position: absolute;
    z-index: 100;
    right: 0.0625rem;
    top: 0.25rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0.0625rem solid transparent;
    border-left: none;
    color: #5a575d;
    padding: 0.5rem;
    background: #fff; }
    .quick-search .form button svg {
      display: block;
      fill: none;
      width: 100%;
      height: 100%; }
      .quick-search .form button svg * {
        stroke: currentColor;
        stroke-width: 0.125rem;
        stroke-linecap: round; }
    .quick-search .form button:hover, .quick-search .form button:focus {
      color: #eab444; }
  .quick-search .results {
    margin: 1rem 0 0; }
    .quick-search .results:empty {
      display: none; }
    .quick-search .results .card:nth-child(n + 3) {
      display: none; }
    @media (min-width: 768px) {
      .quick-search .results .card {
        width: calc(33.333% - 2rem); }
        .quick-search .results .card:nth-child(3) {
          display: block; }
        .quick-search .results .card:nth-child(n + 4) {
          display: none; } }
    @media (min-width: 992px) {
      .quick-search .results {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        width: 50rem;
        margin: 0;
        background: #fff;
        padding: 1.5rem;
        border: 0.0625rem solid #f0d9a8; } }

@media (max-width: 991.9px) {
  .nav-open {
    height: 100vh;
    overflow: hidden; }
    .nav-open > header .logo, .nav-open > header .toggle-search, .nav-open > header .toggle-cart {
      opacity: 0; }
    .nav-open > header .user {
      transform: translate(0, 0); } }

#bfx-cc-wrapper {
  padding: 0.8125rem 0.4375rem;
  background: #bbadaa;
  border: 0.125rem solid #eab444;
  height: 3.625rem;
  width: 3.625rem;
  bottom: 0;
  right: 0;
  z-index: 999;
  position: fixed; }
  #bfx-cc-wrapper:before {
    content: "Ship To:";
    color: #fff;
    padding: 0;
    font-size: 0.75rem;
    display: none;
    margin: 0 0.375rem 0 0;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase; }
  #bfx-cc-wrapper .bfx-cc-expanded {
    position: fixed;
    bottom: 58px;
    top: auto;
    right: 0px; }
    #bfx-cc-wrapper .bfx-cc-expanded .bfx-cc-content form #bfx-cc-btn {
      display: inline-flex;
      flex-flow: row nowrap;
      justify-content: center;
      align-items: center;
      padding: 0.6875rem 1.8125rem;
      margin: 0;
      border: 0.125rem solid currentColor;
      font-weight: 700;
      font-size: 0.875rem;
      line-height: 1.21429;
      letter-spacing: 0.1em;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase;
      transition: all .25s;
      width: 100%;
      background: #ef9662;
      border-color: #ef9662;
      color: #fff;
      border-radius: 0;
      height: auto;
      margin: 1rem 0 0; }
      #bfx-cc-wrapper .bfx-cc-expanded .bfx-cc-content form #bfx-cc-btn:hover, #bfx-cc-wrapper .bfx-cc-expanded .bfx-cc-content form #bfx-cc-btn:focus {
        background: #C95C57;
        border-color: #C95C57;
        color: #fff;
        cursor: pointer; }
      #bfx-cc-wrapper .bfx-cc-expanded .bfx-cc-content form #bfx-cc-btn:active {
        background: #6E1C1F;
        border-color: #6E1C1F;
        color: #fff; }
  #bfx-cc-wrapper img {
    filter: grayscale(100%); }
  @media (max-width: 991.9px) {
    #bfx-cc-wrapper {
      top: auto !important; } }
  @media (min-width: 992px) {
    #bfx-cc-wrapper {
      z-index: 1001;
      padding: 0 0 0 1rem;
      background: transparent;
      border: none;
      height: 2rem;
      width: auto;
      position: absolute;
      bottom: auto;
      top: 0;
      right: calc(2.5% + 7px) !important;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-end; }
      #bfx-cc-wrapper:before {
        display: block; }
      #bfx-cc-wrapper .bfx-cc-collapsed {
        height: auto !important; }
      #bfx-cc-wrapper .bfx-cc-expanded {
        position: absolute;
        bottom: auto;
        top: 100%; } }
  @media (min-width: 1200px) {
    #bfx-cc-wrapper {
      right: calc(7.5% + 7px) !important; } }
  @media (min-width: 1412px) {
    #bfx-cc-wrapper {
      right: calc(50vw - 593px) !important; } }

.blog .hero.interior .container > div,
.blog_post .hero.interior .container > div {
  max-width: 100%;
  margin: 0 auto;
  color: white; }
  @media (min-width: 768px) {
    .blog .hero.interior .container > div,
    .blog_post .hero.interior .container > div {
      margin: 0; } }

.blog .main,
.blog_post .main {
  order: 0; }

.blog .filters,
.blog_post .filters {
  order: 1;
  text-align: center;
  margin-bottom: 1rem; }
  @media (min-width: 768px) {
    .blog .filters,
    .blog_post .filters {
      order: 2;
      text-align: left; } }

.blog .w-bdr,
.blog_post .w-bdr {
  margin-top: 1rem; }
  @media (min-width: 768px) {
    .blog .w-bdr,
    .blog_post .w-bdr {
      margin-top: 1.5rem; } }
  @media (min-width: 992px) {
    .blog .w-bdr,
    .blog_post .w-bdr {
      margin-top: 2rem; } }

.blog .blog-top,
.blog_post .blog-top {
  display: none;
  padding: 2.125rem 0;
  border-bottom: 1px solid #d1d1d1; }
  @media (min-width: 768px) {
    .blog .blog-top,
    .blog_post .blog-top {
      display: block; } }
  .blog .blog-top nav,
  .blog .blog-top p,
  .blog_post .blog-top nav,
  .blog_post .blog-top p {
    margin: 0; }
  .blog .blog-top p,
  .blog_post .blog-top p {
    text-align: right; }

.blog .row + .row,
.blog_post .row + .row {
  margin-top: 0; }

.blog .social,
.blog_post .social {
  font-size: 1.25em;
  color: #f1e6d6;
  margin: 0 auto 1.875rem; }
  .blog .social ul,
  .blog_post .social ul {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row wrap; }
  .blog .social li,
  .blog_post .social li {
    margin: 0 0 0.5rem; }
    .blog .social li + li,
    .blog_post .social li + li {
      margin: 0 0 0.5rem 0.5rem; }
  @media (min-width: 992px) {
    .blog .social,
    .blog_post .social {
      position: relative;
      margin: 0; }
      .blog .social li,
      .blog_post .social li {
        margin: 0 0 0.6875rem; }
        .blog .social li + li,
        .blog_post .social li + li {
          margin: 0 0 0.6875rem 0.6875rem; } }
  .blog .social a,
  .blog_post .social a {
    display: block;
    width: 1.875rem;
    height: 1.875rem;
    color: #999999;
    background: #5a575d;
    border-radius: 50%;
    position: relative; }
    .blog .social a:hover, .blog .social a:focus,
    .blog_post .social a:hover,
    .blog_post .social a:focus {
      color: #777777; }
    @media (min-width: 768px) {
      .blog .social a,
      .blog_post .social a {
        width: 2.5rem;
        height: 2.5rem; } }
    .blog .social a svg,
    .blog_post .social a svg {
      width: 50%;
      height: 50%;
      fill: currentColor;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      .blog .social a svg path,
      .blog_post .social a svg path {
        fill: currentColor; }

.blog .single-post article .img-w,
.blog_post .single-post article .img-w {
  position: relative; }
  .blog .single-post article .img-w .tag,
  .blog_post .single-post article .img-w .tag {
    position: absolute;
    top: 5%;
    left: 0;
    display: inline-block;
    width: auto;
    padding: 0.5rem 0.75rem;
    background: #e3e3e3;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #5a575d; }

.blog .single-post article .cnt h3,
.blog_post .single-post article .cnt h3 {
  font-family: "Crimson Text", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  margin: 0.25rem 0 0;
  text-transform: capitalize;
  /* Primary/3 */ }
  .blog .single-post article .cnt h3 a,
  .blog_post .single-post article .cnt h3 a {
    text-decoration: none;
    color: inherit; }
  @media (min-width: 768px) {
    .blog .single-post article .cnt h3,
    .blog_post .single-post article .cnt h3 {
      font-size: 1.625rem;
      line-height: 2.25rem;
      /* or 138% */
      margin: 1rem 0; } }

.blog .single-post article .cnt .byline,
.blog_post .single-post article .cnt .byline {
  text-align: left; }

.blog .post-feed,
.blog_post .post-feed {
  padding-top: 1rem;
  border-top: 1px solid #e3e3e3; }
  .blog .post-feed article.listing,
  .blog_post .post-feed article.listing {
    background-color: #f6f6f6;
    display: flex;
    justify-content: space-between;
    margin: 1rem 0; }
    .blog .post-feed article.listing .img-w,
    .blog_post .post-feed article.listing .img-w {
      width: calc(37.5% - 32px);
      min-height: 9.5rem; }
      .blog .post-feed article.listing .img-w img,
      .blog_post .post-feed article.listing .img-w img {
        height: 100%;
        object-fit: cover; }
      .blog .post-feed article.listing .img-w.default img,
      .blog_post .post-feed article.listing .img-w.default img {
        object-fit: contain;
        object-position: center;
        margin: auto;
        width: 90%; }
    .blog .post-feed article.listing .cnt,
    .blog_post .post-feed article.listing .cnt {
      width: 62.5%;
      padding: 1.25rem 0;
      display: flex;
      flex-flow: column nowrap;
      justify-content: center; }
      .blog .post-feed article.listing .cnt h3,
      .blog_post .post-feed article.listing .cnt h3 {
        font-weight: 500;
        margin-bottom: 0.5rem;
        font-size: 1rem;
        line-height: 1.5rem;
        color: #5a575d;
        letter-spacing: 0.02em; }
        .blog .post-feed article.listing .cnt h3 small,
        .blog_post .post-feed article.listing .cnt h3 small {
          display: block;
          margin-bottom: 0.5rem;
          font-size: 0.875rem;
          line-height: 150%;
          /* identical to box height, or 21px */
          letter-spacing: 0.08em;
          text-transform: uppercase; }
        .blog .post-feed article.listing .cnt h3 a,
        .blog_post .post-feed article.listing .cnt h3 a {
          color: #5a575d;
          text-decoration: none; }
        @media (min-width: 992px) {
          .blog .post-feed article.listing .cnt h3,
          .blog_post .post-feed article.listing .cnt h3 {
            font-size: 1.25rem;
            line-height: 1.6875rem; } }
      .blog .post-feed article.listing .cnt .byline,
      .blog_post .post-feed article.listing .cnt .byline {
        margin-bottom: 0;
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.5rem; }
        .blog .post-feed article.listing .cnt .byline span,
        .blog_post .post-feed article.listing .cnt .byline span {
          margin-right: 0.375rem; }
          .blog .post-feed article.listing .cnt .byline span.author,
          .blog_post .post-feed article.listing .cnt .byline span.author {
            font-weight: 600;
            color: #a57d2c; }
    .blog .post-feed article.listing .summary,
    .blog_post .post-feed article.listing .summary {
      margin-bottom: 1rem; }
    @media (max-width: 767.9px) {
      .blog .post-feed article.listing,
      .blog_post .post-feed article.listing {
        flex-direction: column;
        justify-content: normal; }
        .blog .post-feed article.listing .img-w,
        .blog_post .post-feed article.listing .img-w {
          width: 100%; }
        .blog .post-feed article.listing .cnt,
        .blog_post .post-feed article.listing .cnt {
          padding: 1rem 0 0.75rem;
          width: 100%; }
        .blog .post-feed article.listing .byline,
        .blog_post .post-feed article.listing .byline {
          text-align: left; } }

.blog .featured-blogs,
.blog_post .featured-blogs {
  margin-top: 1.5rem; }
  .blog .featured-blogs h2,
  .blog_post .featured-blogs h2 {
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e3e3e3; }
  .blog .featured-blogs .blog-card,
  .blog_post .featured-blogs .blog-card {
    margin-bottom: 2rem; }
    .blog .featured-blogs .blog-card a,
    .blog_post .featured-blogs .blog-card a {
      text-decoration: none;
      color: #5a575d; }
    .blog .featured-blogs .blog-card .img-w,
    .blog_post .featured-blogs .blog-card .img-w {
      position: relative;
      overflow: hidden;
      min-height: 9.5rem;
      padding-top: 65%;
      margin-bottom: 0.875rem; }
      .blog .featured-blogs .blog-card .img-w img,
      .blog_post .featured-blogs .blog-card .img-w img {
        position: absolute;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .blog .featured-blogs .blog-card .cnt h4,
    .blog_post .featured-blogs .blog-card .cnt h4 {
      font-weight: normal;
      font-size: 1rem;
      line-height: 1.5rem;
      color: #5a575d;
      text-transform: none;
      letter-spacing: normal; }

.blog .blog-archive h2,
.blog_post .blog-archive h2 {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 0.5rem; }

.blog .blog-archive ul,
.blog_post .blog-archive ul {
  text-align: left;
  margin-bottom: 2rem; }

.blog .blog-archive li,
.blog_post .blog-archive li {
  margin-bottom: 0.75rem; }
  .blog .blog-archive li:first-child,
  .blog_post .blog-archive li:first-child {
    margin-top: 1.5rem; }
  .blog .blog-archive li a,
  .blog_post .blog-archive li a {
    color: #5a575d; }

.blog .blog-archive li.is-active a,
.blog_post .blog-archive li.is-active a {
  font-weight: 600;
  color: #5a575d; }

.blog .blog-archive.mobile-only,
.blog_post .blog-archive.mobile-only {
  display: none; }

.blog .blog-archive.desktop-only,
.blog_post .blog-archive.desktop-only {
  display: block; }

@media (max-width: 767.9px) {
  .blog .blog-archive h2,
  .blog_post .blog-archive h2 {
    font-weight: normal;
    letter-spacing: normal; }
  .blog .blog-archive ul,
  .blog_post .blog-archive ul {
    text-align: center;
    margin: 0 0 1rem; }
  .blog .blog-archive li,
  .blog_post .blog-archive li {
    display: inline-block;
    margin-right: 1rem;
    padding: 0.125rem 0.625rem;
    background: #e3e3e3;
    transition: all .25s; }
    .blog .blog-archive li:hover,
    .blog_post .blog-archive li:hover {
      background: #bbadaa; }
    .blog .blog-archive li a,
    .blog_post .blog-archive li a {
      font-size: 0.875rem;
      color: #5a575d; }
      .blog .blog-archive li a:hover, .blog .blog-archive li a:focus,
      .blog_post .blog-archive li a:hover,
      .blog_post .blog-archive li a:focus {
        text-decoration: none; }
    .blog .blog-archive li.is-active,
    .blog_post .blog-archive li.is-active {
      background-color: #5a575d; }
      .blog .blog-archive li.is-active a,
      .blog_post .blog-archive li.is-active a {
        color: white;
        font-weight: 600; }
  .blog .blog-archive.mobile-only,
  .blog_post .blog-archive.mobile-only {
    display: block; }
  .blog .blog-archive.desktop-only,
  .blog_post .blog-archive.desktop-only {
    display: none; } }

.blog .byline,
.blog_post .byline {
  margin-bottom: 1.875rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem; }
  .blog .byline span,
  .blog_post .byline span {
    margin-right: 0.5rem; }
    .blog .byline span.author,
    .blog_post .byline span.author {
      font-weight: 500;
      color: #a57d2c; }

.blog_post .blog-sidebar {
  position: sticky;
  top: 9.375rem;
  align-self: flex-start; }
  .blog_post .blog-sidebar .featured-blogs {
    margin: 0; }

.blog_post .post-hero .tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  width: auto;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em; }

.blog_post .post-hero h2 {
  margin-bottom: 1rem;
  text-align: left; }

.blog_post .post-body img {
  margin-bottom: 2.25rem; }
  @media (min-width: 768px) {
    .blog_post .post-body img {
      margin-bottom: 3rem; } }

.blog_post .post-body h2 {
  text-align: left; }

.blog_post .post-body h3 {
  margin-bottom: 1.375rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6875rem;
  text-transform: capitalize; }
  @media (min-width: 992px) {
    .blog_post .post-body h3 {
      font-size: 1.25rem;
      margin-bottom: 1.5rem; } }

.blog_post .post-body table img {
  width: auto; }

.blog_post .post-body ol {
  display: block;
  margin: 1.5rem 0 1.5rem 1.5rem;
  list-style-type: decimal; }
  .blog_post .post-body ol li {
    padding: 0; }
    .blog_post .post-body ol li:before {
      display: none; }
  .blog_post .post-body ol b {
    display: inline-block;
    margin: 0; }

.blog_post .post-body b {
  display: block;
  font-weight: 400;
  margin: 1.5rem 0; }

.blog_post .post-body p img {
  margin: 0; }
  @media (min-width: 768px) {
    .blog_post .post-body p img {
      max-width: 80%;
      margin: 2.5rem 0; } }
  @media (min-width: 992px) {
    .blog_post .post-body p img {
      max-width: 75%; } }

.blog_post .blog-social-share,
.blog_post .blog-featured-products,
.blog_post .blog-latest-posts {
  margin-bottom: 2.5rem; }

.blog_post .blog-social-share .share-line {
  display: none; }

.blog_post .blog-social-share .share {
  margin: 0; }

.blog_post .blog-featured-products {
  margin-top: 2rem; }
  .blog_post .blog-featured-products h4 {
    margin: 0 0 2rem;
    padding: 0 0 0.75rem;
    border-bottom: 1px solid #e3e3e3; }
  .blog_post .blog-featured-products .card {
    margin-bottom: 1.5rem !important;
    padding: 0;
    width: auto; }
    .blog_post .blog-featured-products .card:last-child {
      margin-bottom: 0; }
    .blog_post .blog-featured-products .card .img-w {
      padding: 67.5% 0 0;
      overflow: hidden; }
      .blog_post .blog-featured-products .card .img-w a {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        transform: translate(-50%, -50%);
        width: 100%; }
    .blog_post .blog-featured-products .card .title {
      margin: 0 0 1rem;
      line-height: 1.3125rem; }
    .blog_post .blog-featured-products .card p {
      margin: 0 0 1rem; }
      .blog_post .blog-featured-products .card p.style, .blog_post .blog-featured-products .card p.sku {
        line-height: 1.25rem;
        letter-spacing: 0.08em;
        text-transform: uppercase; }
      .blog_post .blog-featured-products .card p.price {
        font-size: 1rem;
        line-height: 1.5rem; }
      .blog_post .blog-featured-products .card p:last-child {
        margin: 0; }

.blog_post .blog-latest-posts article > a {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 67.5% 0 0; }
  .blog_post .blog-latest-posts article > a img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translate(-50%, -50%); }

.blog_post .blog-latest-posts article .cnt > * {
  display: none; }

.blog_post .blog-latest-posts article .cnt > h3 {
  display: block;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  color: #999999;
  margin: 0.5625rem 0 1.625rem; }
  .blog_post .blog-latest-posts article .cnt > h3 a {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.6875rem;
    color: #999999;
    font-family: "Work Sans", Helvetica, Arial, sans-serif; }

.blog .hero.interior {
  background: #f6f6f6; }
  .blog .hero.interior:before {
    display: none; }
  .blog .hero.interior .container {
    color: #5a575d;
    position: relative;
    padding: 1rem; }
    .blog .hero.interior .container .breadcrumbs li, .blog .hero.interior .container .breadcrumbs a, .blog .hero.interior .container .breadcrumbs span {
      color: #5a575d; }
    .blog .hero.interior .container div, .blog .hero.interior .container h1, .blog .hero.interior .container p {
      color: inherit; }

.blog .pagination {
  padding-top: 1rem; }
  @media (max-width: 991.9px) {
    .blog .pagination {
      margin-bottom: 0.625rem; } }

.recent-post-heading {
  margin-bottom: 2rem;
  text-align: left !important; }

.recent-posts {
  position: relative;
  margin: 0 -1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap; }
  .recent-posts .recent-post {
    margin: 1rem;
    width: 100%; }
    .recent-posts .recent-post .img-w {
      position: relative;
      padding-top: 72.72%;
      overflow: hidden;
      height: auto; }
      .recent-posts .recent-post .img-w a {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        transition: all .25s; }
        .recent-posts .recent-post .img-w a img {
          height: 100%;
          object-fit: cover; }
      .recent-posts .recent-post .img-w .tag {
        position: absolute;
        top: 5%;
        left: 0;
        display: inline-block;
        width: auto;
        padding: 0.5rem 0.875rem;
        background: #5a575d;
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #fff; }
      .recent-posts .recent-post .img-w.default img {
        object-fit: contain;
        object-position: center;
        margin: auto;
        width: 90%; }
    .recent-posts .recent-post .cnt {
      padding: 1rem 0; }
      .recent-posts .recent-post .cnt .tag {
        font-size: 0.875rem;
        text-transform: uppercase;
        display: none; }
      .recent-posts .recent-post .cnt a {
        text-decoration: none; }
      .recent-posts .recent-post .cnt h3 {
        font-size: 1rem;
        font-weight: 500;
        line-height: 24px;
        text-transform: capitalize;
        transition: all .25s; }
        @media (min-width: 768px) {
          .recent-posts .recent-post .cnt h3 {
            font-size: 18px;
            line-height: 27px; } }
      .recent-posts .recent-post .cnt .read-more {
        appearance: none;
        position: relative;
        display: inline-flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        padding: 0.75rem 1.75rem;
        margin: 0;
        border: 0.125rem solid currentColor;
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 1.21429;
        text-align: center;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        transition: all .25s;
        width: 100%;
        position: relative;
        margin-top: 1rem !important;
        background: #eab444;
        border-color: #eab444;
        color: #5a575d; }
        .stamped-file-uploader .recent-posts .recent-post .cnt .read-more {
          border: none; }
        .recent-posts .recent-post .cnt .read-more + [class*="btn-"] {
          margin: 0.9375rem 0 0; }
        .recent-posts .recent-post .cnt .read-more svg {
          display: inline-block;
          width: 1.25rem;
          height: 1rem;
          fill: currentColor; }
        @media (min-width: 992px) {
          .recent-posts .recent-post .cnt .read-more {
            width: auto;
            margin: 0; }
            .recent-posts .recent-post .cnt .read-more + [class*="btn-"] {
              margin: 0 0 0 0.9375rem; } }
        .recent-posts .recent-post .cnt .read-more:hover, .recent-posts .recent-post .cnt .read-more:focus {
          text-decoration: none; }
        .recent-posts .recent-post .cnt .read-more:hover, .recent-posts .recent-post .cnt .read-more:focus {
          background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), #EAB444;
          color: #5a575d;
          cursor: pointer; }
        .recent-posts .recent-post .cnt .read-more:active {
          background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), #EAB444;
          color: #5a575d; }
    .recent-posts .recent-post:hover .img-w a, .recent-posts .recent-post:focus .img-w a {
      width: 125%;
      height: 125%; }
  .recent-posts .slick-list {
    margin: 0 0 1.5rem; }
  @media (min-width: 768px) {
    .recent-posts .recent-post {
      width: calc(33.33% - 2rem);
      margin: 0 1rem; } }

/*  --------------------------------------------------------------------------  *\

    FOOTER

\*  --------------------------------------------------------------------------  */
body > footer {
  overflow: hidden;
  /*  --------------------------------------------------------------------------  *\

    FOOTER - LAYOUT - MIDDLE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FOOTER - LAYOUT - BOTTOM

\*  --------------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\

        COMPONENTS

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FOOTER - COPYRIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FOOTER - ADDRESS

\*  --------------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\

        NAVIGATIONS

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FOOTER - NAV - SOCIAL

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FOOTER - NAV - FOOTER

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FOOTER - NAV - BADGES

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FOOTER - NAV - FOOTER

\*  --------------------------------------------------------------------------  */ }
  @media (min-width: 768px) {
    body > footer {
      border-top: 1px solid #e3e3e3;
      background: linear-gradient(to bottom, #fff 94%, #f4f4ed 0); } }
  body > footer .inner-footer {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2.5rem;
    grid-template-areas: 'cta' 'top' 'middle'; }
    @media (min-width: 992px) {
      body > footer .inner-footer {
        column-gap: 2rem;
        grid-template-columns: 2fr .7fr;
        grid-template-areas: 'top cta' 'middle cta'; } }
    @media (max-width: 991.9px) {
      body > footer .inner-footer {
        padding-left: 0;
        padding-right: 0; } }
  body > footer .footer-middle {
    grid-area: middle;
    padding: 1.5rem 1rem; }
    @media (min-width: 992px) {
      body > footer .footer-middle {
        padding: 2.5rem 0; } }
    @media (min-width: 992px) {
      body > footer .footer-middle .row {
        justify-content: start; } }
    body > footer .footer-middle .row > div p {
      margin-bottom: 1rem; }
    body > footer .footer-middle .row > div.col-md-4 {
      padding-right: 0; }
      @media (min-width: 768px) {
        body > footer .footer-middle .row > div.col-md-4 {
          width: 38%; } }
      @media (min-width: 1425px) {
        body > footer .footer-middle .row > div.col-md-4 {
          width: 34%; } }
    @media (min-width: 992px) {
      body > footer .footer-middle .row > div.col-lg-8 {
        width: 62%; } }
    @media (min-width: 1425px) {
      body > footer .footer-middle .row > div.col-lg-8 {
        width: 66%; } }
    @media (min-width: 992px) {
      body > footer .footer-middle .row > div:nth-child(2) {
        padding: 0; } }
    body > footer .footer-middle .row > div:nth-child(3) {
      display: none;
      padding-left: 0; }
      @media (min-width: 992px) {
        body > footer .footer-middle .row > div:nth-child(3) {
          display: block; } }
  body > footer .footer-bottom {
    color: #fff;
    background: #5a575d;
    padding: 1rem 0; }
    body > footer .footer-bottom .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-flow: column nowrap; }
      @media (min-width: 768px) {
        body > footer .footer-bottom .container {
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-flow: row nowrap; } }
  body > footer .cta-wrapper {
    grid-area: cta;
    padding: 2rem;
    color: #5a575d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-flow: column;
    row-gap: 1rem;
    background: #f6f6f6;
    position: relative; }
    @media (min-width: 992px) {
      body > footer .cta-wrapper {
        padding: 2rem; }
        body > footer .cta-wrapper:after {
          content: "";
          display: block;
          height: 100%;
          width: 50vw;
          position: absolute;
          top: 0;
          left: 99%;
          bottom: 0;
          background: #f6f6f6; } }
    body > footer .cta-wrapper picture, body > footer .cta-wrapper img {
      width: 2.5625rem;
      height: 2.5625rem; }
    body > footer .cta-wrapper p {
      margin-bottom: 0;
      font-weight: 600;
      font-size: 0.875rem;
      line-height: 1.375rem;
      color: #5a575d; }
      @media (min-width: 992px) {
        body > footer .cta-wrapper p {
          font-size: 0.75rem;
          line-height: 1.6rem; } }
    body > footer .cta-wrapper .btn-primary {
      width: auto; }
  body > footer a {
    color: #5a575d;
    text-decoration: none; }
    body > footer a:hover, body > footer a:focus {
      text-decoration: underline;
      color: #a57d2c; }
  @media print {
    body > footer {
      display: none; } }
  body > footer .copyright {
    line-height: 1.2;
    font-size: 0.75rem;
    margin: 0;
    order: 1;
    color: #fff; }
    @media (min-width: 768px) {
      body > footer .copyright {
        order: 0; } }
  body > footer .inner-content div div p, body > footer address {
    font-size: 0.875rem;
    line-height: 1.3125rem; }
    @media (min-width: 768px) {
      body > footer .inner-content div div p, body > footer address {
        font-size: 0.75rem; } }
    body > footer .inner-content div div p > span, body > footer address > span {
      font-size: 1rem;
      color: #eab444;
      margin: 0.125rem 0.75rem 0 0; }
    body > footer .inner-content div div p svg, body > footer address svg {
      fill: #5a575d;
      width: 0.9375rem;
      height: 0.9375rem;
      margin-right: 0.75rem; }
  body > footer address {
    margin: 0 0 1rem; }
    body > footer address, body > footer address ~ p {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      flex-flow: row nowrap; }
  body > footer .inner-content div div p {
    margin: 0 0 1.5rem; }
  body > footer .phone {
    margin: 0 0 1rem; }
  body > footer .social {
    font-size: 1.25em;
    color: #5a575d;
    text-align: left;
    margin-top: 1rem; }
    body > footer .social ul {
      margin: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-flow: row nowrap;
      gap: 0.5rem; }
      body > footer .social ul li {
        margin: 0; }
        body > footer .social ul li + li {
          margin: 0; }
    @media (min-width: 768px) and (max-width: 991.9px) {
      body > footer .social ul {
        flex-flow: row wrap; } }
    body > footer .social a {
      display: flex;
      width: 1.875rem;
      height: 1.875rem;
      border: 1px solid #5a575d;
      border-radius: 50px;
      text-align: center; }
      body > footer .social a:hover {
        border-color: #eab444;
        background: #eab444; }
    body > footer .social svg {
      display: block;
      fill: #5a575d;
      width: 1.125rem;
      height: 1.125rem;
      margin: auto auto; }
    @media (min-width: 992px) {
      body > footer .social h5 {
        margin: 3.25rem 0 0; } }
  body > footer .footer {
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: left;
    overflow: hidden; }
    @media (min-width: 768px) {
      body > footer .footer {
        font-size: 0.75rem;
        border-top: none;
        padding-top: 0; } }
    body > footer .footer > ul {
      column-count: 1;
      column-gap: 1.5rem;
      margin: 0; }
      @media (min-width: 768px) {
        body > footer .footer > ul {
          column-count: 2; } }
      @media (min-width: 992px) {
        body > footer .footer > ul {
          column-gap: 2rem;
          column-count: 3; } }
      @media (min-width: 1200px) {
        body > footer .footer > ul {
          margin: 0; } }
    body > footer .footer li {
      margin: 0 0 0.75rem; }
  body > footer .secure-badges {
    margin-top: 1rem; }
    body > footer .secure-badges ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: start;
      align-items: start;
      flex-flow: row wrap;
      grid-gap: 0.5rem; }
    body > footer .secure-badges li {
      padding: 0;
      margin: 0; }
      body > footer .secure-badges li::before {
        display: none; }
    body > footer .secure-badges img {
      width: 3.125rem;
      height: 2.0625rem; }
      @media (min-width: 992px) {
        body > footer .secure-badges img {
          width: 1.875rem;
          height: 1.25rem; } }
    body > footer .secure-badges a {
      display: block; }
    body > footer .secure-badges.top {
      display: none; }
    body > footer .secure-badges.bottom {
      margin-top: 1rem; }
      body > footer .secure-badges.bottom ul {
        margin: 0 0 0 auto; }
    @media (min-width: 768px) {
      body > footer .secure-badges.top {
        display: block; }
      body > footer .secure-badges.bottom {
        display: none; } }
  body > footer nav.copyright {
    order: 0;
    margin: 0 0 0.5rem; }
    @media (min-width: 768px) {
      body > footer nav.copyright {
        order: 1;
        margin: 0; } }
    body > footer nav.copyright ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-flow: row nowrap; }
    body > footer nav.copyright li + li {
      margin: 0 0 0 1rem;
      padding: 0 0 0 1rem;
      border-left: 0.0625rem solid #5a575d; }
    body > footer nav.copyright a:hover, body > footer nav.copyright a:focus {
      text-decoration: underline;
      color: #fff; }
  @media (max-width: 767.9px) {
    body > footer [class*="col-"] {
      padding: 0 1.5rem; } }
  body > footer .col-xs-12 + .col-xs-12 {
    margin-top: 1rem; }
  body > footer .sms-container > .hbspt-form {
    margin: 0; }
  body > footer .top {
    display: none !important; }
  body > footer .shopperlink {
    margin-bottom: 1rem; }
    body > footer .shopperlink img {
      width: 5rem;
      height: 2.5rem;
      object-fit: contain;
      object-position: left; }
  @media (min-width: 768px) {
    body > footer .top {
      display: block !important; }
    body > footer .bottom {
      display: none !important; } }

.hs-form h5 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 0.5rem; }

.hs-form p {
  font-size: 0.8125rem;
  margin: 0 0 1rem; }

.hs-form .hbspt-form form {
  display: flex;
  flex-flow: row wrap;
  align-items: center; }
  .hs-form .hbspt-form form .hs-email {
    width: 100%; }
    .hs-form .hbspt-form form .hs-email .hs-form-required {
      display: none; }
    .hs-form .hbspt-form form .hs-email input {
      display: block;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0.75rem 1rem;
      background: #fff;
      border: 1px solid #d2c4a3; }
  .hs-form .hbspt-form form .hs-recaptcha {
    order: 3;
    margin-top: 1rem;
    display: none; }
  .hs-form .hbspt-form form .hs-submit {
    order: 2;
    width: 100%;
    margin-top: 0.75rem; }
    .hs-form .hbspt-form form .hs-submit .hs-button.primary {
      appearance: none;
      position: relative;
      display: inline-flex;
      flex-flow: row nowrap;
      justify-content: center;
      align-items: center;
      padding: 0.75rem 1.75rem;
      margin: 0;
      border: 0.125rem solid currentColor;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.21429;
      text-align: center;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .25s;
      width: 100%;
      background: #eacb86;
      border-color: #eacb86;
      color: #fff;
      border-bottom: none; }
      .stamped-file-uploader .hs-form .hbspt-form form .hs-submit .hs-button.primary {
        border: none; }
      .hs-form .hbspt-form form .hs-submit .hs-button.primary + [class*="btn-"] {
        margin: 0.9375rem 0 0; }
      .hs-form .hbspt-form form .hs-submit .hs-button.primary svg {
        display: inline-block;
        width: 1.25rem;
        height: 1rem;
        fill: currentColor; }
      @media (min-width: 992px) {
        .hs-form .hbspt-form form .hs-submit .hs-button.primary {
          width: auto;
          margin: 0; }
          .hs-form .hbspt-form form .hs-submit .hs-button.primary + [class*="btn-"] {
            margin: 0 0 0 0.9375rem; } }
      .hs-form .hbspt-form form .hs-submit .hs-button.primary:hover, .hs-form .hbspt-form form .hs-submit .hs-button.primary:focus {
        text-decoration: none; }
      .hs-form .hbspt-form form .hs-submit .hs-button.primary:hover, .hs-form .hbspt-form form .hs-submit .hs-button.primary:focus {
        background: #f0d9a8;
        border-color: #f0d9a8;
        color: #fff; }
      .hs-form .hbspt-form form .hs-submit .hs-button.primary:active {
        background: #164d65;
        border-color: #164d65;
        color: #fff; }
      .invert .hs-form .hbspt-form form .hs-submit .hs-button.primary {
        background: #fff;
        border-color: #fff;
        color: #eab444; }
        .invert .hs-form .hbspt-form form .hs-submit .hs-button.primary:hover, .invert .hs-form .hbspt-form form .hs-submit .hs-button.primary:focus {
          background: transparent;
          color: #fff; }
        .invert .hs-form .hbspt-form form .hs-submit .hs-button.primary:active {
          background: #164d65;
          color: #fff; }
  @media (min-width: 992px) {
    .hs-form .hbspt-form form .hs-email {
      width: 70%; }
    .hs-form .hbspt-form form .hs-submit {
      width: 30%;
      margin: 0; }
      .hs-form .hbspt-form form .hs-submit .hs-button.primary {
        border-bottom: none;
        width: 100%;
        padding: 0.6875rem 0.6875rem 0.75rem 0.6875rem; } }

.sms-container .hbspt-form, .contact-sms-container .hbspt-form {
  margin: 0; }
  .sms-container .hbspt-form .hs_email, .sms-container .hbspt-form .hs_mobilephone, .contact-sms-container .hbspt-form .hs_email, .contact-sms-container .hbspt-form .hs_mobilephone {
    width: 100%;
    margin: 0 0 1rem; }
    .sms-container .hbspt-form .hs_email ul.hs-error-msgs li, .sms-container .hbspt-form .hs_mobilephone ul.hs-error-msgs li, .contact-sms-container .hbspt-form .hs_email ul.hs-error-msgs li, .contact-sms-container .hbspt-form .hs_mobilephone ul.hs-error-msgs li {
      padding: 0 0 0 .75rem; }
      .sms-container .hbspt-form .hs_email ul.hs-error-msgs li label, .sms-container .hbspt-form .hs_mobilephone ul.hs-error-msgs li label, .contact-sms-container .hbspt-form .hs_email ul.hs-error-msgs li label, .contact-sms-container .hbspt-form .hs_mobilephone ul.hs-error-msgs li label {
        font-size: 12px; }
  .sms-container .hbspt-form input.hs-input, .contact-sms-container .hbspt-form input.hs-input {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #d2c4a3; }
  .sms-container .hbspt-form .hs_submit input, .contact-sms-container .hbspt-form .hs_submit input {
    min-width: 135px; }

.hs-form.contact-sms-container .hbspt-form .hs_email, .hs-form.contact-sms-container .hbspt-form .hs_mobilephone, .hs-form.contact-sms-container .hbspt-form .hs_firstname {
  width: 100%;
  margin: 0 0 1rem; }
  .hs-form.contact-sms-container .hbspt-form .hs_email label span, .hs-form.contact-sms-container .hbspt-form .hs_mobilephone label span, .hs-form.contact-sms-container .hbspt-form .hs_firstname label span {
    font-size: 13px;
    color: #333;
    font-family: Montserrat; }
  .hs-form.contact-sms-container .hbspt-form .hs_email ul.hs-error-msgs li, .hs-form.contact-sms-container .hbspt-form .hs_mobilephone ul.hs-error-msgs li, .hs-form.contact-sms-container .hbspt-form .hs_firstname ul.hs-error-msgs li {
    padding: 0 0 0 .75rem; }
    .hs-form.contact-sms-container .hbspt-form .hs_email ul.hs-error-msgs li label, .hs-form.contact-sms-container .hbspt-form .hs_mobilephone ul.hs-error-msgs li label, .hs-form.contact-sms-container .hbspt-form .hs_firstname ul.hs-error-msgs li label {
      font-size: 12px; }

.hs-form.contact-sms-container .hbspt-form input.hs-input {
  border: 1px solid #cbd6e2;
  border-radius: 3px;
  background-color: #f5f8fa; }

/*  --------------------------------------------------------------------------  *\

    SECTIONS

\*  --------------------------------------------------------------------------  */
.cart hr {
  margin: 0; }

.cart [searchspring-personalized-recommend] {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem; }
  @media (min-width: 992px) {
    .cart [searchspring-personalized-recommend] {
      padding-top: 4.5rem;
      padding-bottom: 4.5rem; } }

[data-content-region="below_hero"] section.basic-text {
  padding: 2.5rem 0 !important; }
  @media (min-width: 992px) {
    [data-content-region="below_hero"] section.basic-text {
      padding: 4.5rem 0 !important; } }
  [data-content-region="below_hero"] section.basic-text .container > div {
    max-width: 46.25rem;
    margin: 0 auto; }
    [data-content-region="below_hero"] section.basic-text .container > div h1, [data-content-region="below_hero"] section.basic-text .container > div h2, [data-content-region="below_hero"] section.basic-text .container > div p {
      text-align: center; }

section, .section {
  padding: 2.5rem 0;
  background: #fff; }
  @media (max-width: 575.9px) {
    section, .section {
      overflow: hidden;
      width: 100%; } }
  section section, section .section, .section section, .section .section {
    padding: 0; }
  @media (min-width: 992px) {
    section, .section {
      padding: 4.5rem 0; } }
  section + section, section + .section, .section + section, .section + .section {
    padding: 0 0 2.5rem; }
    @media (min-width: 992px) {
      section + section, section + .section, .section + section, .section + .section {
        padding: 0 0 4.5rem; } }
  section.bg-lt-grey + section, section.bg-lt-grey + .section, .section.bg-lt-grey + section, .section.bg-lt-grey + .section {
    padding: 2.5rem 0; }
    @media (min-width: 992px) {
      section.bg-lt-grey + section, section.bg-lt-grey + .section, .section.bg-lt-grey + section, .section.bg-lt-grey + .section {
        padding: 4.5rem 0; } }

@media (max-width: 575.9px) {
  .category section:nth-child(-n+3), .category .section:nth-child(-n+3), .search section:nth-child(-n+3), .search .section:nth-child(-n+3) {
    overflow: visible; } }

.banner-w .container {
  text-align: center;
  position: relative;
  z-index: 0; }
  .banner-w .container h2 {
    position: static;
    display: inline-block;
    padding: 0 0.625rem;
    background: #fff; }
    .banner-w .container h2:before {
      content: "";
      background: #eab444;
      height: 0.0625rem;
      width: calc(100% - 2rem);
      position: absolute;
      z-index: -1;
      left: 1rem;
      top: 0.61364em; }
  .banner-w .container > * {
    text-align: left; }

@media (min-width: 768px) {
  .banner-w#Reviews {
    padding-top: 5rem; } }

@media (min-width: 992px) {
  .banner-w#Reviews {
    padding-top: 6rem; } }

@media (min-width: 768px) {
  .banner-w#QA {
    padding-bottom: 5rem; } }

@media (min-width: 992px) {
  .banner-w#QA {
    padding-bottom: 6rem; } }

/*  --------------------------------------------------------------------------  *\

    BACKGROUNDS

\*  --------------------------------------------------------------------------  */
.invert {
  background: #eab444; }
  .invert h1, .invert p, .invert strong, .invert small {
    color: #fff; }
  .invert a {
    color: #fff; }
    .invert a:hover, .invert a:focus {
      color: #eacb86; }
  .invert hr {
    background: #fff; }

/*  --------------------------------------------------------------------------  *\

    BACKGROUNDS - COLORS - LIGHT GREY

\*  --------------------------------------------------------------------------  */
.bg-lt-grey {
  background: #f6f6f6; }
  @media (max-width: 767.9px) {
    .bg-lt-grey {
      padding: 3rem 0; } }

/*  --------------------------------------------------------------------------  *\

    BACKGROUNDS - COLORS - DARK

\*  --------------------------------------------------------------------------  */
.bg-dark {
  background: #eab444 url(../img/dk-speckles.png) 50% 50%; }

/*  --------------------------------------------------------------------------  *\

    COMPONENTS

    The order here doesn't really matter, these imports will call in all 
    the components we've built for the website.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    Buttons

    These are used throughout the website to create a call to action for another element like
    submitting a form, linking to another page, or linking to another element on the same page.
    GENERIC BUTTON STYLES
    This sets up the base of all our styles, it's also the btn-default styles

\*  --------------------------------------------------------------------------  */
[class*="btn-"] {
  appearance: none;
  position: relative;
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.75rem;
  margin: 0;
  border: 0.125rem solid currentColor;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.21429;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  width: 100%;
  /*  ----------------------------------------------------------------------  *\

        Button Arrow Options

        @import 'icon/_icon-top';
        @import 'icon/_icon-bottom';
        @import 'icon/_icon-left';
        @import 'icon/_icon-right';

    \*  ----------------------------------------------------------------------  */
  letter-spacing: 0.1rem; }
  .stamped-file-uploader [class*="btn-"] {
    border: none; }
  [class*="btn-"] + [class*="btn-"] {
    margin: 0.9375rem 0 0; }
  [class*="btn-"] svg {
    display: inline-block;
    width: 1.25rem;
    height: 1rem;
    fill: currentColor; }
  @media (min-width: 992px) {
    [class*="btn-"] {
      width: auto;
      margin: 0; }
      [class*="btn-"] + [class*="btn-"] {
        margin: 0 0 0 0.9375rem; } }
  [class*="btn-"]:hover, [class*="btn-"]:focus {
    text-decoration: none; }
  [class*="btn-"] svg {
    fill: currentColor;
    margin: 0 0 0 0.5rem; }
  [class*="btn-"].btn-sm, [class*="btn-"].sm {
    font-size: 0.6875rem;
    padding: 0.125rem 1rem;
    border-width: 0.0625rem; }
  [class*="btn-"]:hover, [class*="btn-"]:focus {
    cursor: pointer; }
  [class*="btn-"]:disabled {
    opacity: .4; }

/*  --------------------------------------------------------------------------  *\

    Button Color Options

    @import 'colors/tag';
    @import 'colors/success';
    @import 'colors/danger';
    @import 'colors/warning';

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    Button - Primary

\*  --------------------------------------------------------------------------  */
.btn-primary {
  background: #eab444;
  border-color: #eab444;
  color: #5a575d; }
  .btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), #EAB444;
    color: #5a575d; }
  .btn-primary:active {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), #EAB444;
    color: #5a575d; }
  .invert .btn-primary {
    background: #fff;
    border-color: #fff;
    color: #eab444; }
    .invert .btn-primary:hover, .invert .btn-primary:focus {
      background: transparent;
      color: #fff; }
    .invert .btn-primary:active {
      background: #164d65;
      color: #fff; }

/*  --------------------------------------------------------------------------  *\

    Button - Secondary

\*  --------------------------------------------------------------------------  */
.btn-secondary {
  background: transparent;
  border-color: #5a575d;
  color: #5a575d;
  border-width: 1px; }
  .btn-secondary:hover, .btn-secondary:focus {
    background: #5a575d;
    border-color: #5a575d;
    color: #fff; }
  .btn-secondary:active {
    background: #312E34;
    border-color: #312E34;
    color: #fff; }
  .invert .btn-secondary {
    background: #5a575d;
    border-color: #fff;
    color: #fff; }
    .invert .btn-secondary:hover, .invert .btn-secondary:focus {
      background: #fff;
      color: #bbadaa; }
    .invert .btn-secondary:active {
      background: #d5d5d3;
      color: #5a575d; }

/*  --------------------------------------------------------------------------  *\

    Button - Tertiary

\*  --------------------------------------------------------------------------  */
.btn-tertiary {
  background: none;
  border-color: none;
  border: 0;
  padding: 0;
  color: #eacb86; }
  .btn-tertiary:hover, .btn-tertiary:focus {
    color: #eab444; }

/*  --------------------------------------------------------------------------  *\

    Button - Text

\*  --------------------------------------------------------------------------  */
.btn-txt {
  background: none;
  border: none;
  padding: 0;
  color: #5a575d;
  text-transform: none;
  border-radius: 0; }
  .btn-txt svg {
    margin: 0 0.5rem 0 0; }
  .btn-txt.alt {
    color: #a57d2c; }
    .btn-txt.alt svg {
      fill: currentColor; }
    .btn-txt.alt:hover, .btn-txt.alt:focus {
      color: #eab444;
      text-decoration: underline; }
  .btn-txt:hover, .btn-txt:focus {
    color: #a57d2c;
    background: none;
    text-decoration: underline; }
    .btn-txt:hover.ico-chevron-right:after, .btn-txt:focus.ico-chevron-right:after {
      border-right-color: #f1e6d6;
      border-bottom-color: #f1e6d6; }
  .btn-txt.ico-chevron-right:after {
    content: "";
    display: inline-block;
    width: 0.3125rem;
    height: 0.3125rem;
    border: 0.125rem solid transparent;
    border-right-color: #fff;
    border-bottom-color: #fff;
    transform: rotate(-45deg);
    margin: 0 0 0 0.5rem;
    transition: all .25s; }

.margin-top-fix {
  margin-top: 0 !important;
  font-size: 1rem !important;
  font-weight: 600;
  letter-spacing: 0; }

/*  --------------------------------------------------------------------------  *\

    Buttons - DROPDOWN BUTTONS

\*  --------------------------------------------------------------------------  */
.drop-btn {
  position: relative;
  width: 100%; }
  .drop-btn .btn-tertiary {
    color: #a57d2c;
    color: #5a575d;
    column-gap: 0.5rem; }
    @media (min-width: 992px) {
      .drop-btn .btn-tertiary {
        width: 12.5rem; } }
  @media (min-width: 992px) {
    .drop-btn {
      width: auto; } }
  .drop-btn ul {
    display: none;
    position: absolute;
    left: 0 !important;
    top: 100% !important;
    border: 0.0625rem solid #5a575d;
    background: #fff;
    width: 100%;
    font-size: 0.875rem;
    z-index: 1; }
    .drop-btn ul li {
      padding: 0;
      text-align: center; }
      .drop-btn ul li:before {
        display: none; }
      .drop-btn ul li + li {
        border-top: 0.0625rem solid #5a575d;
        margin: 0; }
    .drop-btn ul a, .drop-btn ul button {
      display: block;
      padding: 0.9375rem 0.5rem;
      margin: 0;
      width: 100%; }
      .drop-btn ul a:hover, .drop-btn ul a:focus, .drop-btn ul button:hover, .drop-btn ul button:focus {
        background: #5a575d;
        color: #fff; }
  .drop-btn [class*="btn-"][aria-expanded="true"] + ul {
    display: block; }

/*  --------------------------------------------------------------------------  *\

    Buttons - BACK TO TOP BUTTONS

\*  --------------------------------------------------------------------------  */
a.btt {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  margin: 0 0 0 1rem;
  white-space: nowrap; }
  a.btt .icon {
    position: relative;
    display: block;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 3.125rem;
    background: #eab444;
    color: #fff;
    margin: 0 auto 0.25rem; }
    a.btt .icon svg {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      fill: currentColor;
      width: 1.25rem;
      height: 1.25rem; }

/*  --------------------------------------------------------------------------  *\

    Buttons Animation Options

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    RATINGS

\*  --------------------------------------------------------------------------  */
.ratings .stamped-badge[data-rating="0"],
.ratings .stamped-badge[data-rating="0,0"],
.ratings .stamped-badge[data-rating="0.0"] {
  display: block; }

/*  --------------------------------------------------------------------------  *\

    BASIC COMPONENTS

    These are commonly used patterns found throughout the website. They do not 
    use JavaScript to make them functional.

\*  --------------------------------------------------------------------------  */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden; }
  @media print {
    .hero {
      display: none; } }
  .hero.txt-only > div > h1 {
    font-weight: 800; }
  .hero.txt-only > div .cart-actions {
    padding: 0;
    margin: 2rem 0 0; }
    .hero.txt-only > div .cart-actions p {
      display: none; }
    .hero.txt-only > div .cart-actions .btn-primary {
      padding-left: 1rem;
      padding-right: 1rem; }
      .hero.txt-only > div .cart-actions .btn-primary:before {
        content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxOCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMgOFY2QzMgNC40MDg3IDMuNjMyMTQgMi44ODI1OCA0Ljc1NzM2IDEuNzU3MzZDNS44ODI1OCAwLjYzMjE0MSA3LjQwODcgMCA5IDBDMTAuNTkxMyAwIDEyLjExNzQgMC42MzIxNDEgMTMuMjQyNiAxLjc1NzM2QzE0LjM2NzkgMi44ODI1OCAxNSA0LjQwODcgMTUgNlY4SDE2QzE2LjUzMDQgOCAxNy4wMzkxIDguMjEwNzEgMTcuNDE0MiA4LjU4NTc5QzE3Ljc4OTMgOC45NjA4NiAxOCA5LjQ2OTU3IDE4IDEwVjE4QzE4IDE4LjUzMDQgMTcuNzg5MyAxOS4wMzkxIDE3LjQxNDIgMTkuNDE0MkMxNy4wMzkxIDE5Ljc4OTMgMTYuNTMwNCAyMCAxNiAyMEgyQzEuNDY5NTcgMjAgMC45NjA4NTkgMTkuNzg5MyAwLjU4NTc4NiAxOS40MTQyQzAuMjEwNzE0IDE5LjAzOTEgMCAxOC41MzA0IDAgMThWMTBDMCA4LjkgMC45IDggMiA4SDNaTTggMTQuNzNWMTdIMTBWMTQuNzNDMTAuMzgxMyAxNC41MDk5IDEwLjY3OTMgMTQuMTcwMSAxMC44NDc4IDEzLjc2MzNDMTEuMDE2MiAxMy4zNTY2IDExLjA0NTggMTIuOTA1NiAxMC45MzE5IDEyLjQ4MDNDMTAuODE3OSAxMi4wNTUgMTAuNTY2OCAxMS42NzkzIDEwLjIxNzUgMTEuNDExMkM5Ljg2ODIzIDExLjE0MzIgOS40NDAyNyAxMC45OTc5IDkgMTAuOTk3OUM4LjU1OTczIDEwLjk5NzkgOC4xMzE3NyAxMS4xNDMyIDcuNzgyNDggMTEuNDExMkM3LjQzMzE5IDExLjY3OTMgNy4xODIxIDEyLjA1NSA3LjA2ODE1IDEyLjQ4MDNDNi45NTQyIDEyLjkwNTYgNi45ODM3NiAxMy4zNTY2IDcuMTUyMjQgMTMuNzYzM0M3LjMyMDcyIDE0LjE3MDEgNy42MTg3MiAxNC41MDk5IDggMTQuNzNaTTYgNlY4SDEyVjZDMTIgNS4yMDQzNSAxMS42ODM5IDQuNDQxMjkgMTEuMTIxMyAzLjg3ODY4QzEwLjU1ODcgMy4zMTYwNyA5Ljc5NTY1IDMgOSAzQzguMjA0MzUgMyA3LjQ0MTI5IDMuMzE2MDcgNi44Nzg2OCAzLjg3ODY4QzYuMzE2MDcgNC40NDEyOSA2IDUuMjA0MzUgNiA2WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+");
        margin: 0 1rem 0 0; }
  .hero picture img, .hero .picture img, .hero img {
    display: block;
    width: 100%;
    height: auto; }
  .hero .container {
    position: relative;
    text-align: center;
    padding-top: 1.25rem; }
    @media (min-width: 992px) {
      .hero .container {
        text-align: left; } }
    .hero .container > h1 {
      padding-top: 2.5rem;
      padding-bottom: 1.25rem; }
      @media (min-width: 992px) {
        .hero .container > h1 {
          padding-top: 3.5rem; } }
    .hero .container > p:last-child {
      margin-bottom: 3rem; }
    .hero .container .breadcrumbs {
      font-weight: normal;
      font-size: 14px;
      line-height: 16.42px;
      margin: 0; }
      .hero .container .breadcrumbs li.is-active {
        font-weight: 600; }
    .hero .container > div {
      padding: 3.4375rem 0 4.375rem; }
      @media (min-width: 992px) {
        .hero .container > div {
          max-width: 50%; } }
      @media (min-width: 992px) {
        .hero .container > div.half {
          max-width: 50%; } }
      .hero .container > div h1, .hero .container > div p {
        color: #fff; }
      .hero .container > div h1 {
        margin: 0 0 0.6875rem; }
      .hero .container > div.sub-cat {
        padding: 0;
        max-width: 100%; }
        @media (min-width: 992px) {
          .hero .container > div.sub-cat {
            border-bottom: 1px solid #D5D5D3; } }
        .hero .container > div.sub-cat h1, .hero .container > div.sub-cat p {
          color: #5a575d; }
        .hero .container > div.sub-cat h1 {
          margin: 0;
          margin-top: -20px;
          text-transform: capitalize; }
          @media (max-width: 767.9px) {
            .hero .container > div.sub-cat h1 {
              padding-top: 20px;
              text-align: left;
              margin-bottom: 1rem; } }
          @media (min-width: 992px) {
            .hero .container > div.sub-cat h1 {
              padding-top: 1.5rem;
              margin-top: 0; } }
        .hero .container > div.sub-cat .samples-cta {
          width: 100%;
          padding: 1.125rem 2rem;
          background: #f6f6f6;
          font-weight: 400;
          font-size: 0.875rem;
          line-height: 160%;
          text-align: center;
          margin: 2rem 0;
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          align-items: center;
          column-gap: 0.5rem; }
          @media (max-width: 767.9px) {
            .hero .container > div.sub-cat .samples-cta {
              margin: 3.125rem 0 0 -0.9375rem;
              width: 100vw; } }
          @media (min-width: 768px) {
            .hero .container > div.sub-cat .samples-cta {
              width: auto;
              font-size: 1rem;
              margin: 2rem 0 0; } }
          .hero .container > div.sub-cat .samples-cta svg {
            width: 1.125rem;
            height: 1.125rem; }
          .hero .container > div.sub-cat .samples-cta a {
            text-decoration: underline;
            font-weight: 500;
            color: #5a575d; }
            .hero .container > div.sub-cat .samples-cta a:hover, .hero .container > div.sub-cat .samples-cta a:focus {
              color: #eab444; }
        .hero .container > div.sub-cat > p {
          margin-bottom: 2rem; }
          @media (min-width: 992px) {
            .hero .container > div.sub-cat > p {
              margin-bottom: 2.5rem; } }
        .hero .container > div.sub-cat.interior-page > h1 {
          margin-bottom: 1rem; }
          @media (max-width: 767.9px) {
            .hero .container > div.sub-cat.interior-page > h1 {
              text-align: center; } }
          .hero .container > div.sub-cat.interior-page > h1 + p {
            width: 70%;
            text-align: left; }
            @media (max-width: 767.9px) {
              .hero .container > div.sub-cat.interior-page > h1 + p {
                text-align: center;
                margin: 0 auto 2rem; } }
            @media (min-width: 992px) {
              .hero .container > div.sub-cat.interior-page > h1 + p {
                width: 50%; } }
  @media (min-width: 992px) {
    .hero.home {
      max-height: 40.625rem; } }
  .hero.home .picture {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%; }
    .hero.home .picture picture img, .hero.home .picture img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
      @media (min-width: 768px) {
        .hero.home .picture picture img.mob-only, .hero.home .picture img.mob-only {
          display: none; } }
      .hero.home .picture picture img.dt-only, .hero.home .picture img.dt-only {
        display: none; }
        @media (min-width: 768px) {
          .hero.home .picture picture img.dt-only, .hero.home .picture img.dt-only {
            display: block; } }
  .hero.home .container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding-top: 0;
    padding-bottom: 0;
    border: none; }
    @media (min-width: 768px) {
      .hero.home .container {
        padding: 0 3.125rem;
        display: flex;
        flex-direction: row; } }
    @media (min-width: 992px) {
      .hero.home .container {
        padding: 0 4.6875rem; } }
    @media (min-width: 1200px) {
      .hero.home .container {
        padding: 0 6.25rem; } }
    .hero.home .container div {
      padding: 2.25rem 0 12.5rem;
      width: 83.333%;
      margin: 0 auto; }
      @media (min-width: 576px) {
        .hero.home .container div {
          width: 66.667%; } }
      @media (min-width: 768px) {
        .hero.home .container div {
          max-width: 58.33%;
          padding: 6.875rem 0;
          margin: 0; } }
      @media (min-width: 992px) {
        .hero.home .container div {
          max-width: 50%; } }
      @media (min-width: 1200px) {
        .hero.home .container div {
          max-width: 45.5%; } }
      .hero.home .container div h1, .hero.home .container div p {
        color: #eab444; }
  .hero.home h1 {
    font-size: 1.75rem;
    line-height: 1.22222;
    letter-spacing: -.01em;
    margin: 0 0 1rem; }
    @media (min-width: 768px) {
      .hero.home h1 {
        font-size: 2.25rem;
        margin: 0 0 1.125rem; } }
    @media (min-width: 992px) {
      .hero.home h1 {
        font-size: 2.625rem;
        margin: 0 0 1.25rem; } }
  .hero.home p {
    font-size: 1.125rem;
    line-height: 1.55556; }
  .hero.home.invert .container div h1, .hero.home.invert .container div p {
    color: #fff; }
  @media (min-width: 768px) {
    .hero.home.ca-center .container {
      justify-content: center;
      text-align: center; } }
  @media (min-width: 768px) {
    .hero.home.ca-right .container {
      justify-content: flex-end;
      text-align: right; } }
  .hero.interior {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 296px;
    max-height: 325px; }
    .hero.interior:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      height: 100%;
      width: 100%;
      background: #231F20;
      opacity: 0.7;
      z-index: 1; }
      @media (min-width: 992px) {
        .hero.interior:before {
          width: 63.75%;
          background: linear-gradient(90deg, #231F20 0%, rgba(35, 31, 32, 0.97) 5%, rgba(35, 31, 32, 0) 100%); } }
    .hero.interior .img-cont {
      display: none; }
      @media (min-width: 768px) {
        .hero.interior .img-cont {
          display: block; } }
      .hero.interior .img-cont picture {
        height: 100%;
        object-fit: cover; }
        .hero.interior .img-cont picture img {
          object-fit: cover;
          height: 100%; }
      .hero.interior .img-cont img {
        object-fit: cover;
        height: 100%; }
    .hero.interior .container {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      height: 100%;
      padding: 0 1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 2; }
      .hero.interior .container > div {
        padding: 2.25rem 0 1.5rem;
        text-align: left; }
      .hero.interior .container img {
        width: auto;
        height: auto;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 1rem;
        display: block; }
        @media (min-width: 992px) {
          .hero.interior .container img {
            margin: 0 0 2rem;
            text-align: left; } }
      .hero.interior .container .breadcrumbs {
        color: #fff; }
        .hero.interior .container .breadcrumbs a, .hero.interior .container .breadcrumbs span {
          color: #fff; }
    @media (min-width: 768px) {
      .hero.interior {
        background-image: none !important;
        min-height: auto;
        max-height: none; } }
  .hero.banner {
    z-index: 5;
    background: none;
    overflow: visible; }
    .hero.banner.none .cnt {
      display: none !important; }
    @media (min-width: 992px) {
      .hero.banner.center .cnt {
        left: 50%;
        transform: translate(-50%, -50%); }
      .hero.banner.right .cnt {
        left: unset;
        right: 0;
        transform: translate(-25%, -50%); } }
    .hero.banner .img-cont picture img,
    .hero.banner .img-cont img {
      width: 100%;
      min-height: 8.75rem;
      object-fit: contain;
      object-position: top center;
      margin: 0 auto;
      aspect-ratio: 16 / 15; }
      @media (min-width: 768px) {
        .hero.banner .img-cont picture img,
        .hero.banner .img-cont img {
          aspect-ratio: 14 / 5; } }
      @media (min-width: 992px) {
        .hero.banner .img-cont picture img,
        .hero.banner .img-cont img {
          max-width: 1600px; } }
      @media (min-width: 768px) {
        .hero.banner .img-cont picture img.mob-only,
        .hero.banner .img-cont img.mob-only {
          display: none; } }
      .hero.banner .img-cont picture img.dt-only,
      .hero.banner .img-cont img.dt-only {
        display: none; }
        @media (min-width: 768px) {
          .hero.banner .img-cont picture img.dt-only,
          .hero.banner .img-cont img.dt-only {
            display: block; } }
    .hero.banner .cnt {
      position: relative;
      margin: 0 auto;
      margin-top: -10.9375rem;
      padding: 0.5rem;
      background-color: rgba(255, 255, 255, 0.7);
      min-width: 265px;
      max-width: 400px;
      width: 95%; }
      .hero.banner .cnt .inner-cnt {
        background-color: #fff;
        margin: 0 auto;
        height: 100%;
        padding: 2.8125rem;
        text-align: center;
        border: 2px solid #ef9662; }
        .hero.banner .cnt .inner-cnt h2 {
          text-align: center;
          margin-bottom: 0.5rem;
          color: #f1e6d6; }
        .hero.banner .cnt .inner-cnt p {
          font-size: 0.875rem;
          color: #5a575d; }
      @media (min-width: 576px) {
        .hero.banner .cnt {
          position: absolute;
          margin: 0;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); } }
      @media (min-width: 992px) {
        .hero.banner .cnt {
          margin: 0;
          max-width: 450px;
          padding: 1rem;
          top: 50%;
          left: 0%;
          transform: translate(10%, -50%); }
          .hero.banner .cnt .inner-cnt h2 {
            margin-bottom: 0.75rem;
            text-align: center; }
          .hero.banner .cnt .inner-cnt p {
            font-size: 1rem; } }
      @media (min-width: 1200px) {
        .hero.banner .cnt {
          top: 50%;
          left: 0%;
          transform: translate(25%, -50%); } }
      @media (min-width: 1425px) {
        .hero.banner .cnt {
          top: 50%;
          left: 50%;
          transform: translate(-611px, -50%); } }
    .hero.banner .caption {
      display: none; }
      @media (min-width: 992px) {
        .hero.banner .caption {
          display: block;
          position: absolute;
          font-size: 0.875rem;
          color: black;
          font-weight: 600;
          top: 90%;
          transform: translate(10%, 0%);
          width: 450px; } }
      @media (min-width: 1200px) {
        .hero.banner .caption {
          left: 0%;
          transform: translate(25%, -50%); } }
      @media (min-width: 1425px) {
        .hero.banner .caption {
          left: 50%;
          transform: translate(-611px, -50%); } }

.hero-carousel {
  position: relative;
  display: flex;
  opacity: 0;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease; }
  .hero-carousel.slick-initialized {
    opacity: 1; }
  .hero-carousel .slick-arrow {
    position: absolute; }
  .hero-carousel .slick-dots {
    position: absolute;
    bottom: 1.375rem;
    column-gap: 8px; }
    .hero-carousel .slick-dots li button {
      background-color: #fff;
      width: 8px; }
    .hero-carousel .slick-dots li.slick-active button {
      width: 8px;
      height: 8px;
      background-color: #ef9662; }
  .hero-carousel .slick-prev {
    top: 50%;
    display: none;
    left: 10px;
    transform: translateX(50%);
    display: block;
    z-index: 100;
    background-position: 50% 50%;
    background-repeat: no-repeat; }
  .hero-carousel .slick-next {
    top: 50%;
    right: 10px;
    transform: translateX(-50%);
    background-position: 50% 50%;
    background-repeat: no-repeat; }

/*  --------------------------------------------------------------------------  *\

    CARDS

    These elements are used to display content, most likely in a sidebar, column 
    in the body of the page, or as a slide in a carousel.

    They can include images, icons, buttons, and text.

\*  --------------------------------------------------------------------------  */
.card {
  overflow: hidden;
  background: #fff;
  padding-bottom: 1.625rem;
  display: flex !important;
  flex-direction: column;
  /*  ---------------------  *\
        IMPORT STYLES FOR CARD CONTENT STYLING
    
        Comment out any alterations that will not be used on your site.
        This will reduce the file size by removing unused definitions.

        @import 'cards/size/_sm';
        @import 'cards/size/_lg';
    \*  ---------------------  */
  /*  ---------------------*\
        IMPORT STYLES FOR CARD LAYOUT OPTIONS

        Comment out any options that will not be used on your site.
        This will reduce the file size by removing unused definitions.
        @import 'cards/layouts/_img-above';
        @import 'cards/layouts/_img-side';
        @import 'cards/layouts/_img-overlap';
        @import 'cards/layouts/_swatch';
        @import 'cards/layouts/_carousel';
    \*  ---------------------  */
  /*  --------------------------------------------------------------------------  *\

    CARD - LAYOUT - WITH IMAGE ON SIDE

\*  --------------------------------------------------------------------------  */
  /*  ---------------------  *\
        IMPORT STYLES FOR CARD ICON OPTIONS

        Comment out any alterations that will not be used on your site.
        This will reduce the file size by removing unused definitions.

        @import 'cards/icons/_top';
        @import 'cards/icons/_left';
    \*  ---------------------  */
  /*  ---------------------  *\
        IMPORT STYLES FOR CARD CONTENT STYLING

        Comment out any alterations that will not be used on your site.
        This will reduce the file size by removing unused definitions.
        //@import "cards/copy/_article";
    \*---------------------*/
  /*  --------------------------------------------------------------------------  *\

    CARD - COPY - COPY ELEMENTS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    CARD - COPY - SWATCHES

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    CARD - COPY - INFO

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    CARD - COPY - RATING

\*  --------------------------------------------------------------------------  */ }
  .card .cnt {
    flex-grow: 1;
    display: flex;
    flex-direction: column; }
    .card .cnt .price {
      margin: 0;
      font-size: 0.875rem; }
    .card .cnt .actions {
      margin-top: auto;
      display: flex;
      flex-direction: row;
      justify-content: space-between; }
  .card .img-w {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    padding: 75% 0 0;
    overflow: hidden;
    height: 0;
    background-color: #fff; }
    .card .img-w IMG {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); }
  .card .card-figcaption-button {
    font-size: 0.75rem;
    white-space: nowrap;
    /*input[type=checkbox]:checked {
            @include hover {
                &::before {
                    background: $link-4;
                }
            }
        }*/ }
    .card .card-figcaption-button input[type=checkbox] {
      appearance: none;
      outline: none;
      content: none;
      border: 1px solid transparent; }
      .card .card-figcaption-button input[type=checkbox]:hover::before, .card .card-figcaption-button input[type=checkbox]:focus::before {
        background: #f6f6f6; }
      .card .card-figcaption-button input[type=checkbox]:active::before {
        background: #e3e3e3; }
    .card .card-figcaption-button input[type=checkbox]:before {
      content: " ";
      position: relative;
      margin: 0 0.25rem;
      transform: none;
      display: inline-block;
      width: 0.75rem;
      height: 0.75rem;
      line-height: 0.8125rem;
      text-indent: 0;
      font-size: 1rem;
      text-align: center;
      background: #eee;
      border: 0; }
    .card .card-figcaption-button input[type=checkbox]:checked:before {
      content: "\2713";
      color: #eab444 !important; }
    .card .card-figcaption-button input[type=checkbox]:disabled {
      opacity: 0.4; }
      .card .card-figcaption-button input[type=checkbox]:disabled + span {
        opacity: 0.4; }
  .card.img-side {
    flex-direction: row; }
    .card.img-side .img-w {
      width: 33.333%;
      padding: 33.333% 0 0; }
    .card.img-side .cnt {
      width: 66.667%;
      padding-left: 1.625rem; }
      .card.img-side .cnt H3 {
        font-weight: 600; }
      .card.img-side .cnt .actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        margin-top: auto; }
      .card.img-side .cnt .btn-tertiary {
        font-size: 0.6875rem;
        color: #5a575d; }
        @media (min-width: 992px) {
          .card.img-side .cnt .btn-tertiary {
            font-size: 0.875rem; } }
        .card.img-side .cnt .btn-tertiary:hover, .card.img-side .cnt .btn-tertiary:focus {
          color: #5a575d;
          text-decoration: underline; }
  .card .title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%;
    color: #5a575d;
    margin: 0 0 1rem; }
    .card .title a {
      text-decoration: none;
      color: #5a575d; }
      .card .title a:hover, .card .title a:focus {
        text-decoration: underline; }
  .card p, .card h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
    color: #5a575d; }
    @media (min-width: 768px) {
      .card p, .card h4 {
        margin: 0 0 0.75rem; } }
    .card p.style, .card h4.style {
      text-transform: uppercase; }
    .card p.price, .card h4.price {
      margin: 0 0 0.5rem;
      font-size: 1rem;
      font-weight: 400;
      line-height: 150%;
      color: #5a575d; }
      .card p.price .full-price, .card h4.price .full-price {
        color: #bbadaa; }
  .card .swatches {
    padding: 0.1875rem 0; }
  .card .swatch {
    width: 0.625rem;
    height: 0.625rem;
    box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.1875rem #eab444;
    margin: 0 0.6875rem 0 0.1875rem; }
  .card .info {
    margin: 1rem 0;
    padding: 1rem 0 1rem 2.5rem;
    border-top: 0.0625rem solid #f0d9a8;
    border-bottom: 0.0625rem solid #f0d9a8;
    position: relative; }
    .card .info .swatch {
      box-shadow: none;
      width: 1.5rem;
      height: 1.5rem;
      position: absolute;
      left: 0;
      top: 1rem; }
    .card .info p {
      margin: 0;
      font-size: 0.75rem;
      line-height: 1.66667; }
      .card .info p:first-of-type {
        font-size: 0.875rem;
        font-weight: 500; }
  .card .img-w .badge-card {
    position: absolute;
    top: 2.1875rem;
    right: 0.3125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.125rem;
    width: 3.125rem; }
  .card .ratings {
    margin: 1rem 0 0.5rem;
    font-size: 0.875rem;
    line-height: 1;
    color: #eab444; }

/*  --------------------------------------------------------------------------  *\

    BANNERS

    These elements are used to display content, most likely in a sidebar, column 
    in the body of the page, or as a slide in a carousel.

    They can include images, icons, buttons, and text.

\*  --------------------------------------------------------------------------  */
.banner {
  background: #eab444;
  /*  ---------------------  *\
        IMPORT STYLES FOR CARD CONTENT STYLING
    
        Comment out any alterations that will not be used on your site.
        This will reduce the file size by removing unused definitions.

        @import 'cards/size/_sm';
        @import 'cards/size/_lg';
    \*  ---------------------  */
  /*  ---------------------*\
        IMPORT STYLES FOR CARD LAYOUT OPTIONS

        Comment out any options that will not be used on your site.
        This will reduce the file size by removing unused definitions.
        @import 'cards/layouts/_img-above';
        @import 'cards/layouts/_img-behind';
        @import 'cards/layouts/_img-overlap';
        @import 'cards/layouts/_swatch';
        @import 'cards/layouts/_carousel';
    \*  ---------------------  */
  /*  --------------------------------------------------------------------------  *\

    CARD - LAYOUT - WITH IMAGE ON SIDE

\*  --------------------------------------------------------------------------  */
  /*  ---------------------  *\
        IMPORT STYLES FOR CARD ICON OPTIONS

        Comment out any alterations that will not be used on your site.
        This will reduce the file size by removing unused definitions.

        @import 'cards/icons/_top';
        @import 'cards/icons/_left';
    \*  ---------------------  */
  /*  ---------------------  *\
        IMPORT STYLES FOR CARD CONTENT STYLING

        Comment out any alterations that will not be used on your site.
        This will reduce the file size by removing unused definitions.
        //@import "cards/copy/_article";
    \*---------------------*/
  /*  --------------------------------------------------------------------------  *\

    CARD - COPY - COPY ELEMENTS

\*  --------------------------------------------------------------------------  */ }
  .banner .img-w > img {
    width: 100%;
    height: auto; }
  .banner .cnt {
    padding: 1.25rem 2rem; }
  @media (min-width: 768px) {
    .banner.img-side {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      align-content: center;
      flex-flow: row nowrap; }
      .banner.img-side .img-w {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        order: 1;
        width: 41.667%;
        overflow: hidden;
        position: relative; }
        .banner.img-side .img-w > img {
          width: 120%;
          height: auto;
          position: absolute;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
      .banner.img-side .cnt {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        order: 0;
        max-width: 475px;
        width: 58.333%;
        border-right: 0.625rem solid #ef9662; }
      .banner.img-side.alt .img-w, .banner.img-side:nth-child(even) .img-w {
        order: 0; }
      .banner.img-side.alt .cnt, .banner.img-side:nth-child(even) .cnt {
        border-left: 0.625rem solid #ef9662;
        border-right: none; }
      .banner.img-side.tall .img-w {
        width: 50%; }
        .banner.img-side.tall .img-w > img {
          position: static;
          transform: none; }
      .banner.img-side.tall .cnt {
        width: 50%;
        border: none;
        padding: 4.5rem 2.25rem; }
      .banner.img-side.tall h3 {
        font-weight: bold;
        font-size: 1.625rem;
        line-height: 1.46;
        margin: 0 0 1rem;
        letter-spacing: 0.01em;
        text-transform: capitalize; }
        .banner.img-side.tall h3 small {
          display: block;
          font-weight: 600;
          font-size: 1rem;
          line-height: 1;
          letter-spacing: 0.12em;
          text-transform: uppercase;
          margin: 0 0 0.625rem; } }
  .banner .title {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    margin: 0 0 0.5rem;
    text-transform: none; }
    .banner .title a {
      text-decoration: none; }
      .banner .title a:hover, .banner .title a:focus {
        text-decoration: underline; }
    @media (min-width: 768px) {
      .banner .title {
        font-size: 1.25rem;
        line-height: 1.4;
        margin: 0 0 1.875rem; } }
    @media (min-width: 992px) {
      .banner .title {
        font-size: 1.5rem;
        line-height: 1.33333;
        margin: 0 0 2rem; } }
  .banner h3 {
    font-size: 1.25rem;
    line-height: 1.38462;
    margin: 0; }
    @media (min-width: 768px) {
      .banner h3 {
        font-size: 1.4375rem;
        line-height: 1.82609; } }
    @media (min-width: 992px) {
      .banner h3 {
        font-size: 1.625rem;
        line-height: 1.84615; } }
  .banner p {
    color: #eab444; }
    .banner p.style {
      font-size: 0.75rem;
      line-height: 1.5;
      margin: 0 0 0.5rem; }
    .banner p:last-child {
      margin-bottom: 0; }

.banner.invert .title, .banner.invert h3, .banner.invert p, .banner-w.invert .title, .banner-w.invert h3, .banner-w.invert p {
  color: #fff; }

.ss-profile-home {
  margin: 1.5rem 0 0 !important; }
  @media (min-width: 768px) {
    .ss-profile-home {
      margin: 3rem 0 0 !important; } }
  @media (min-width: 992px) {
    .ss-profile-home {
      margin: 5rem 0 0 !important; } }

/*  --------------------------------------------------------------------------  *\

    FACTS

    These elements are used to display content, most likely in a sidebar, column 
    in the body of the page, or as a slide in a carousel.

    They can include images, icons, and text.

\*  --------------------------------------------------------------------------  */
.facts {
  padding: 0; }
  @media (min-width: 768px) {
    .facts {
      margin: 0; } }

@media (min-width: 768px) {
  .fact-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-flow: row wrap;
    padding: 2rem 0; } }

.fact {
  text-align: center;
  /*  ----------------------------------------------------------------------  *\

        FACTS - VARIATIONS IMPORTS
        
        @import 'facts/_small';

    \*  ----------------------------------------------------------------------  */ }
  @media (min-width: 992px) {
    .fact {
      -webkit-box-flex: 1 0 auto;
      -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
      flex: 1 0 auto;
      max-width: calc(50% - 2rem);
      width: calc(25% - 2rem);
      margin: 0 1rem; }
      .fact + .fact {
        margin-top: 3.5rem; }
      .fact:nth-child(n + 5) {
        margin: 2rem 1rem 0; }
      .fact > * {
        width: 100%; }
      .fact + .fact {
        margin-top: 0; } }
  .fact img {
    position: relative;
    display: block;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem; }
  .fact .icon-w {
    position: relative;
    display: block;
    width: 4rem;
    height: 4rem;
    color: #164d65;
    font-size: 8em;
    text-align: center;
    margin: 0 auto 1.5rem;
    padding: 0.875rem;
    border-radius: 50%;
    border: 0.0625rem solid #fff; }
    .fact .icon-w svg {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      display: block;
      width: 2.25rem;
      height: 2.25rem;
      padding: 0;
      fill: #fff; }
  .fact h3 {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 0.875rem; }
  .fact p {
    font-weight: 300; }

.featured-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row nowrap;
  margin: 0 -0.9375rem;
  overflow: auto; }
  .featured-logos img {
    width: auto;
    height: 2.1875rem;
    margin: 0 0.9375rem; }
  @media (min-width: 768px) {
    .featured-logos img {
      min-width: 3.125rem;
      max-width: 12.5rem;
      height: auto; } }

/*  --------------------------------------------------------------------------  *\

    PANEL

\*  --------------------------------------------------------------------------  */
.panel {
  margin: 0 1.5rem; }
  .panel .heading {
    padding: 1.125rem 1.5rem;
    background: #f6f6f6;
    color: #5a575d;
    border: 0.0625rem solid #e3e3e3;
    border-radius: 0; }
    .panel .heading h2 {
      color: #5a575d;
      font-size: 14px;
      font-weight: 500;
      line-height: 21px;
      text-transform: uppercase;
      letter-spacing: 0.08em; }
    .panel .heading :last-child {
      margin-bottom: 0; }
  .panel .cnt {
    padding: 1.5rem;
    border: 0.0625rem solid #e3e3e3;
    border-top: none;
    border-radius: 0; }

.swatches {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row nowrap; }
  .swatches li {
    padding: 0; }
    .swatches li:before {
      display: none; }

.swatch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: row nowrap;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  border: 0.0625rem solid #5a575d; }
  .swatch span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: 1;
    align-items: 1;
    align-content: auto;
    flex-flow: row wrap;
    min-width: 33.333%;
    max-width: 100%;
    width: 100%; }

/*  --------------------------------------------------------------------------  *\

    TOOLTIPS

    Tooltips can be used to display additional information revealed on hover and
    focus states.


    // POSITIONING (DISPLAY, FLEX, FLEX ITEM, POSITION, LEFT, TOP, TRANSFORM)
    // BOX SIZING (WIDTH, HEIGHT, MARGIN, PADDING)
    // BOX STYLING (OPACITY, BACKGROUND, BOX SHADOW, BORDER, BORDER RADIUS, OVERFLOW)
    // FONT STYLING (FONT, FONT-FAMILY, FONT-STYLE, FONT-SIZE, LINE-HEIGHT, FONT-WEIGHT)
    // TEXT STYLING (TEXT-DECORATION, TEXT-TRANSFORM, TEXT-ALIGN, TEXT-SHADOW)
    // OTHER (TRANSITONS, ANIMATIONS, CURSOR)

\*  --------------------------------------------------------------------------  */
.tooltip-trigger {
  position: static;
  margin: 0.3125rem 0 0; }
  .tooltip-trigger:hover > .tooltip, .tooltip-trigger:focus > .tooltip {
    display: block;
    opacity: 1;
    transition-delay: .1s; }
  .tooltip-trigger.hovered > .tooltip {
    display: block;
    opacity: 1;
    transition-delay: .1s; }
  p .tooltip-trigger, li .tooltip-trigger, dd .tooltip-trigger, blockquote .tooltip-trigger {
    border-bottom: .3rem double currentColor; }
  .tooltip-trigger.icon-i {
    display: inline-block;
    background: #5a575d;
    color: #fff;
    border-radius: 0.5rem;
    height: 0.875rem;
    width: 0.875rem;
    text-align: center;
    font-size: 0.625rem;
    line-height: 0.875rem;
    border: none;
    font-weight: 400;
    margin: 0; }
    @media (min-width: 768px) {
      .tooltip-trigger.icon-i {
        transform: translate(0, -0.125rem); } }
  @media (min-width: 768px) {
    .tooltip-trigger {
      position: relative;
      z-index: 0; }
      .tooltip-trigger:hover, .tooltip-trigger:focus {
        z-index: 1000; } }

.tooltip {
  opacity: 0;
  position: fixed;
  z-index: 100;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  width: 100vw;
  max-width: 40rem;
  padding: 1rem;
  background: #fff;
  color: #666666;
  border: 0.0625rem solid #e3e3e3;
  box-shadow: 0 0.125rem 0.5625rem rgba(0, 0, 0, 0.06);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: left;
  transition: all .15s;
  transition-delay: 2s;
  display: none; }
  .tooltip h3 {
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 .5em; }
  .tooltip p {
    margin: 0 0 .5em; }
    .tooltip p:last-child {
      margin-bottom: 0; }
  @media (min-width: 576px) {
    .tooltip {
      width: 90vw; } }
  @media (min-width: 768px) {
    .tooltip {
      width: 90vw; } }
  @media (min-width: 992px) {
    .tooltip {
      width: 75vw; }
      .tooltip.select-fields {
        max-width: 25rem; } }
  @media (min-width: 1200px) {
    .tooltip {
      width: 60vw; } }
  .tooltip.sm {
    width: auto;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    font-size: 0.75rem;
    line-height: 1.33333; }
  .tooltip p:last-child {
    margin-bottom: 0 !important; }
  @media (min-width: 768px) {
    .tooltip {
      position: absolute;
      top: -0.625rem;
      -webkit-transform: translate(-85%, -100%);
      -ms-transform: translate(-85%, -100%);
      transform: translate(-85%, -100%); }
      .tooltip:before, .tooltip:after {
        position: absolute;
        left: 85%;
        top: 100%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        width: 0;
        height: 0;
        content: ""; }
      .tooltip:before {
        border-top: 0.5rem solid #fff;
        border-left: 0.5rem solid transparent;
        border-right: 0.5rem solid transparent;
        z-index: 10; }
      .tooltip:after {
        border-top: 0.625rem solid #e3e3e3;
        border-left: 0.625rem solid transparent;
        border-right: 0.625rem solid transparent;
        z-index: 0; }
      .tooltip.bottom {
        top: calc(100% + 1.875rem);
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%); }
        .tooltip.bottom:before {
          top: 0;
          -webkit-transform: translate(-50%, -100%);
          -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
          border-top: none;
          border-bottom: 0.5rem solid #f1e6d6;
          border-left: 0.5rem solid transparent;
          border-right: 0.5rem solid transparent; }
      .tooltip.left {
        left: -0.5rem;
        top: 50%;
        -webkit-transform: translate(-100%, -50%);
        -ms-transform: translate(-100%, -50%);
        transform: translate(-100%, -50%); }
        .tooltip.left:before {
          top: 50%;
          left: 100%; }
        .tooltip.left:before {
          -webkit-transform: translate(-0.0625rem, -50%);
          -ms-transform: translate(-0.0625rem, -50%);
          transform: translate(-0.0625rem, -50%);
          border-right: none;
          border-left: 0.5rem solid #f1e6d6;
          border-top: 0.5rem solid transparent;
          border-bottom: 0.5rem solid transparent; }
      .tooltip.right {
        left: calc(100% + 0.3125rem);
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%); }
        .tooltip.right:before {
          top: 50%;
          left: 0;
          -webkit-transform: translate(-100%, -50%);
          -ms-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
          border-left: none;
          border-right: 0.5rem solid #f1e6d6;
          border-top: 0.5rem solid transparent;
          border-bottom: 0.5rem solid transparent; } }
  @media (min-width: 1200px) {
    .tooltip {
      transform: translate(-50%, -100%); }
      .tooltip:before, .tooltip:after {
        left: 50%; } }

/*  --------------------------------------------------------------------------  *\

    BADGE

\*  --------------------------------------------------------------------------  */
.badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row wrap;
  margin: 0 0 1rem; }
  @media (min-width: 992px) {
    .badges {
      position: absolute;
      right: 0;
      top: -1rem;
      -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
      transform: translate(0, -100%); } }

.badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row nowrap;
  border-radius: 0.8125rem;
  height: 1.625rem;
  line-height: 1.625rem;
  background: #eacb86;
  color: #fff; }
  .badge .icon {
    width: 1.625rem;
    height: 1.625rem;
    background: #FCC211;
    border-radius: 0.8125rem;
    padding: 0.1875rem; }
    .badge .icon svg {
      fill: #fff;
      height: 1.25rem;
      width: 1.25rem; }
  .badge .cnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
    font-size: 0.75rem;
    padding: 0 0.75rem; }
  .badge .tooltip-trigger {
    display: block;
    margin: 0 0 0 0.5rem;
    font-size: 0.5rem;
    color: #fff;
    border: 0.0625rem solid #fff;
    border-radius: 0.5rem;
    height: 0.875rem;
    width: 0.875rem;
    line-height: 0.875rem;
    text-align: center; }

/*  --------------------------------------------------------------------------  *\

    ALERTS

\*  --------------------------------------------------------------------------  */
.alert-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: row nowrap;
  border: 0.0625rem solid currentColor;
  padding: 0.75rem 1rem;
  margin: 0 0 2rem;
  color: #eab444;
  background: white; }
  .alert-box svg {
    fill: currentColor;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 1rem 0 0; }
  .alert-box p {
    font-size: 0.875rem; }
  .alert-box :last-child {
    margin-bottom: 0; }
  .alert-box.success {
    color: #037a03;
    background: white; }
  .alert-box.error {
    color: #FF0000;
    background: #ffd6d6; }
  .alert-box.warning {
    color: #bbadaa;
    border-color: #e3e3e3;
    background: #f6f6f6; }
  .alert-box.info {
    color: #eacb86;
    background: white; }

.guarantees .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem; }
  @media (min-width: 768px) {
    .guarantees .container {
      padding-top: 0.9375rem;
      padding-bottom: 0.9375rem; } }
  .guarantees .container:before {
    content: "";
    height: 1px;
    width: calc(100% - 2rem);
    position: absolute;
    bottom: 100%;
    left: 1rem;
    background: #bbadaa; }
  .guarantees .container > div {
    width: 50%;
    padding: 0.75rem;
    text-align: center; }
    @media (min-width: 768px) {
      .guarantees .container > div {
        width: 25%;
        padding: 0.9375rem; } }
    .guarantees .container > div svg {
      width: 1.625rem;
      height: 1.625rem;
      margin: 0 0 0.625rem; }
      @media (min-width: 768px) {
        .guarantees .container > div svg {
          width: 1.875rem;
          height: 1.875rem; } }
    .guarantees .container > div h3, .guarantees .container > div p {
      text-transform: uppercase;
      margin: 0 0 0.25rem; }
    .guarantees .container > div h3 {
      color: #eab444;
      font-weight: 700;
      font-size: 11px;
      line-height: 13px; }
      @media (min-width: 768px) {
        .guarantees .container > div h3 {
          font-weight: 600;
          font-size: 16px;
          line-height: 19px; } }
    .guarantees .container > div p {
      color: #666666;
      font-weight: 400;
      font-size: 10px;
      line-height: 12px; }
      @media (min-width: 768px) {
        .guarantees .container > div p {
          font-size: 14px;
          line-height: 17px; } }

.col-lg-4 .guarantees .container {
  padding: 0.75rem 0; }
  @media (min-width: 768px) {
    .col-lg-4 .guarantees .container {
      padding: 0.875rem 0;
      margin: 0;
      width: 100%; } }
  .col-lg-4 .guarantees .container:before {
    display: none; }
  @media (min-width: 768px) {
    .col-lg-4 .guarantees .container > div {
      width: 50%;
      padding: 0.875rem; }
      .col-lg-4 .guarantees .container > div:nth-child(odd) {
        padding-left: 0; }
      .col-lg-4 .guarantees .container > div:nth-child(even) {
        padding-right: 0; } }
  @media (min-width: 768px) {
    .col-lg-4 .guarantees .container > div svg {
      width: 1.6875rem;
      height: 1.6875rem; } }
  @media (min-width: 768px) {
    .col-lg-4 .guarantees .container > div h3 {
      font-size: 14px;
      line-height: 17px; } }
  @media (min-width: 768px) {
    .col-lg-4 .guarantees .container > div p {
      font-size: 12px;
      line-height: 15px; } }

/*  --------------------------------------------------------------------------  *\

    COMPARE-MODAL  

    This is here to control the comparison modal that pops up when the user wants to use the
     compare tool to compare items on the category pages

\*  --------------------------------------------------------------------------  */
#comparisonModal {
  width: 100%;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  bottom: 0px;
  max-width: none;
  max-height: none;
  height: 100%; }
  #comparisonModal .modal-body {
    height: 80vh;
    max-height: calc(80vh - 48px); }
  #comparisonModal .modal-dialog {
    margin: 1.5rem auto;
    position: absolute;
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    background: white;
    width: 85%; }
    @media (min-width: 992px) {
      #comparisonModal .modal-dialog {
        width: 75%; } }
  #comparisonModal .modal-header {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem; }
  #comparisonModal .modal-close {
    font-size: 1.875rem;
    height: 2rem;
    width: 2rem;
    text-decoration: none; }
    #comparisonModal .modal-close > span {
      height: 2rem;
      width: 2rem;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      line-height: 1; }
    #comparisonModal .modal-close:focus:before, #comparisonModal .modal-close:focus:after {
      display: none; }

.category .category-section {
  padding-top: 0; }
  @media (min-width: 768px) {
    .category .category-section {
      padding-top: 2rem; } }

@media (max-width: 767.9px) {
  .category [data-content-region="category_above_content"] {
    display: none; } }

.category .category-section .container .int-cnt, .category .hero:not(.cat-landing) .container .int-cnt {
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .category .category-section .container .int-cnt, .category .hero:not(.cat-landing) .container .int-cnt {
      flex-direction: row;
      align-items: center;
      justify-content: space-between; } }

.category .category-section .container .sort, .category .hero:not(.cat-landing) .container .sort {
  position: absolute;
  width: calc(100% - 120px);
  right: 0;
  top: -100px; }
  @media (max-width: 767.9px) {
    .category .category-section .container .sort, .category .hero:not(.cat-landing) .container .sort {
      display: flex;
      justify-content: flex-end;
      top: -136px; }
      .category .category-section .container .sort label, .category .hero:not(.cat-landing) .container .sort label {
        display: none; } }
  @media (min-width: 768px) {
    .category .category-section .container .sort, .category .hero:not(.cat-landing) .container .sort {
      top: 0; } }
  .category .category-section .container .sort select:hover, .category .category-section .container .sort select:focus, .category .hero:not(.cat-landing) .container .sort select:hover, .category .hero:not(.cat-landing) .container .sort select:focus {
    cursor: pointer; }

.category .category-section .container #searchspring-select, .category .hero:not(.cat-landing) .container #searchspring-select {
  position: relative; }
  @media (max-width: 767.9px) {
    .category .category-section .container #searchspring-select, .category .hero:not(.cat-landing) .container #searchspring-select {
      padding: 0; } }
  .category .category-section .container #searchspring-select .sort, .category .hero:not(.cat-landing) .container #searchspring-select .sort {
    position: absolute;
    width: 300px;
    right: 0;
    top: -100px; }
    @media (max-width: 767.9px) {
      .category .category-section .container #searchspring-select .sort, .category .hero:not(.cat-landing) .container #searchspring-select .sort {
        display: flex;
        justify-content: flex-end;
        top: -140px;
        align-items: center;
        width: auto; }
        .category .category-section .container #searchspring-select .sort label, .category .hero:not(.cat-landing) .container #searchspring-select .sort label {
          display: block;
          text-transform: capitalize;
          color: #5a575d;
          font-weight: 400;
          font-size: 14px;
          line-height: 160%; }
        .category .category-section .container #searchspring-select .sort select, .category .hero:not(.cat-landing) .container #searchspring-select .sort select {
          font-size: 0.875rem;
          width: 10rem;
          padding: 0;
          background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI1IiB2aWV3Qm94PSIwIDAgOCA1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNOCAwTDMuOTkxMzggNUw0LjM3MTE0ZS0wNyAtNi45OTM4MmUtMDdMOCAwWiIgZmlsbD0iIzVBNTc1RCIvPgo8L3N2Zz4K") no-repeat 95% 50%; } }
    @media (min-width: 768px) {
      .category .category-section .container #searchspring-select .sort, .category .hero:not(.cat-landing) .container #searchspring-select .sort {
        top: 0; } }
    .category .category-section .container #searchspring-select .sort select:hover, .category .category-section .container #searchspring-select .sort select:focus, .category .hero:not(.cat-landing) .container #searchspring-select .sort select:hover, .category .hero:not(.cat-landing) .container #searchspring-select .sort select:focus {
      cursor: pointer; }

@media (min-width: 768px) {
  .category .category-section .container .col-md-9, .category .hero:not(.cat-landing) .container .col-md-9 {
    padding-top: 3.5625rem; } }

.category .category-section .container #searchspring-content, .category .hero:not(.cat-landing) .container #searchspring-content {
  min-height: 73.125rem; }
  .category .category-section .container #searchspring-content.fully-loaded, .category .hero:not(.cat-landing) .container #searchspring-content.fully-loaded {
    min-height: 0; }
  @media (min-width: 768px) {
    .category .category-section .container #searchspring-content, .category .hero:not(.cat-landing) .container #searchspring-content {
      min-height: 63.75rem; }
      .category .category-section .container #searchspring-content.fully-loaded, .category .hero:not(.cat-landing) .container #searchspring-content.fully-loaded {
        min-height: 0; } }
  @media (min-width: 992px) {
    .category .category-section .container #searchspring-content, .category .hero:not(.cat-landing) .container #searchspring-content {
      min-height: 72.1875rem; }
      .category .category-section .container #searchspring-content.fully-loaded, .category .hero:not(.cat-landing) .container #searchspring-content.fully-loaded {
        min-height: 0; } }
  .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=previous], .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=next], .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=previous], .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=next] {
    height: 1.25rem;
    position: relative; }
    .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a, .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a {
      position: relative;
      display: block;
      height: 100%;
      width: 100%; }
      .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a svg, .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a svg, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a svg, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a svg {
        display: none; }
      .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a:before, .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a:before, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a:before, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a:before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
      .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a.is-disabled, .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a.is-disabled, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a.is-disabled, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a.is-disabled {
        opacity: 0.6; }
      .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a:hover, .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a:focus, .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a:hover, .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a:focus, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a:hover, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a:focus, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a:hover, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a:focus {
        opacity: 0.6; }
  .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a:before, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=previous] a:before {
    content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNSIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgNSA4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNSA4TDQuNzgwMjNlLTA4IDMuOTkxMzhMNSA1Ljk2MjQ0ZS0wOEw1IDhaIiBmaWxsPSIjNUE1NzVEIi8+Cjwvc3ZnPgo="); }
  .category .category-section .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a:before, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container nav.pagination li[class*=next] a:before {
    content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNSIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgNSA4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCA1Ljk2MjQ0ZS0wOEw1IDQuMDA4NjJMOS41Mzk5ZS0wOCA4TDAgNS45NjI0NGUtMDhaIiBmaWxsPSIjNUE1NzVEIi8+Cjwvc3ZnPgo="); }
  .category .category-section .container #searchspring-content .ss-content-container header.ss-header-container, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container header.ss-header-container {
    display: none; }
  .category .category-section .container #searchspring-content .ss-content-container .feed-products, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .feed-products {
    grid-row-gap: 1rem; }
    @media (min-width: 768px) {
      .category .category-section .container #searchspring-content .ss-content-container .feed-products, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .feed-products {
        grid-row-gap: 2rem; } }
  .category .category-section .container #searchspring-content .ss-content-container .card .img-w, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .card .img-w {
    padding: 75% 0 0; }
    .category .category-section .container #searchspring-content .ss-content-container .card .img-w a:hover img:not(.ss-badge), .category .category-section .container #searchspring-content .ss-content-container .card .img-w a:focus img:not(.ss-badge), .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .card .img-w a:hover img:not(.ss-badge), .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .card .img-w a:focus img:not(.ss-badge) {
      transform: translate(-50%, -50%) scale(1.05); }
    .category .category-section .container #searchspring-content .ss-content-container .card .img-w a img:not(.ss-badge), .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .card .img-w a img:not(.ss-badge) {
      transition: all .2s; }
  .category .category-section .container #searchspring-content .ss-content-container .card .title a:hover, .category .category-section .container #searchspring-content .ss-content-container .card .title a:focus, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .card .title a:hover, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .card .title a:focus {
    color: #eab444; }
  @media (max-width: 767.9px) {
    .category .category-section .container #searchspring-content .ss-content-container .ss-results, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .ss-results {
      display: flex;
      flex-direction: column; }
      .category .category-section .container #searchspring-content .ss-content-container .ss-results > *, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .ss-results > * {
        order: 1; }
      .category .category-section .container #searchspring-content .ss-content-container .ss-results .ss-slideout-toolbar, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .ss-results .ss-slideout-toolbar {
        position: relative;
        order: 0; }
        .category .category-section .container #searchspring-content .ss-content-container .ss-results .ss-slideout-toolbar .ss-slideout-button, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .ss-results .ss-slideout-toolbar .ss-slideout-button {
          position: absolute;
          top: -175px;
          left: 4px;
          width: 3.75rem;
          background: none;
          padding: 0;
          color: #fff; }
          .category .category-section .container #searchspring-content .ss-content-container .ss-results .ss-slideout-toolbar .ss-slideout-button:before, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .ss-results .ss-slideout-toolbar .ss-slideout-button:before {
            content: "Filter";
            background: none;
            width: 100%;
            height: auto;
            text-transform: capitalize;
            color: #5a575d;
            font-weight: 400;
            font-size: 14px;
            line-height: 160%;
            width: auto;
            left: 1rem;
            top: 50%;
            transform: translate(0, -50%); }
          .category .category-section .container #searchspring-content .ss-content-container .ss-results .ss-slideout-toolbar .ss-slideout-button:after, .category .hero:not(.cat-landing) .container #searchspring-content .ss-content-container .ss-results .ss-slideout-toolbar .ss-slideout-button:after {
            content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMCAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuMjAzOTUgMTAuODg4OUM0Ljk4NDc0IDExLjUzNjUgNC4zOTU3OSAxMiAzLjcwNTkxIDEyQzMuMDE0MzkgMTIgMi40MjYyNCAxMS41MzU2IDIuMjA4NyAxMC44ODg5SDkuMjMzNzRlLTA1QzEuMDEyMjhlLTA1IDEwLjY2NjcgOS41MzY2N2UtMDUgMTAuNjM5OCA5LjUzNjY3ZS0wNSAxMC4zMzMzQzkuNTM2NjdlLTA1IDEwLjAyNjkgMC4wMDAxODU2MTQgMTAgOS4yMzM3NGUtMDUgOS43Nzc3OEgyLjIwNzg3QzIuNDI3MDkgOS4xMzAyIDMuMDE2MDQgOC42NjY2NyAzLjcwNTkxIDguNjY2NjdDNC4zOTc0NCA4LjY2NjY3IDQuOTg1NTggOS4xMzEwNyA1LjIwMzEzIDkuNzc3NzhIMTAuMDAwMUMxMC4wMDAxIDEwIDkuOTk5OTggMTAuMDI2OSA5Ljk5OTk4IDEwLjMzMzNDOS45OTk5OCAxMC42Mzk4IDEwLjAwMDEgMTAuNjY2NyAxMC4wMDAxIDEwLjg4ODlINS4yMDM5NVpNNy4wMDMxIDcuNjY2NjdDNi4zMjMxNiA3LjY2NjY3IDUuNzI3NTggNy4yMTM1MyA1LjUwNTg5IDYuNTU1NTZIMS40Njc0MWUtMDdDMi42NjMyM2UtMDYgNi4yMjIyMiAzLjE5NTRlLTA1IDYuMzA2NDIgMy4xOTU0ZS0wNSA2QzMuMTk1NGUtMDUgNS42OTM1OCAtMi41MTY0OWUtMDYgNS42NjY2NyAxLjQ2NzQxZS0wNyA1LjQ0NDQ0SDUuNTA1MDRDNS43Mjc1NiA0Ljc4NjQ3IDYuMzIzOTYgNC4zMzMzMyA3LjAwMzA4IDQuMzMzMzNDNy42ODMwMiA0LjMzMzMzIDguMjc4NiA0Ljc4NjQ3IDguNTAwMjkgNS40NDQ0NEg5Ljk5OTk4QzkuOTk5OTggNS42NjY2NyAxMCA1LjY5MzU4IDEwIDZDMTAgNi4zMDY0MiA5Ljk5OTk4IDYuMjIyMjIgOS45OTk5OCA2LjU1NTU2SDguNTAxMTJDOC4yNzg2IDcuMjEzNTMgNy42ODIyMiA3LjY2NjY3IDcuMDAzMSA3LjY2NjY3Wk0xMCAyLjIyMjIyQzEwIDEuODg4ODkgMTAgMS45NzMwOSAxMCAxLjY2NjY3QzEwIDEuMzYwMjQgMTAgMS40NDQ0NCAxMCAxLjExMTExSDMuNzIwNzRDMy41MDMxOSAwLjQ2NDQgMi45MTUwNSAwIDIuMjIzNTIgMEMxLjUzMzY1IDAgMC45NDQ2NzcgMC40NjM1MzMgMC43MjU0ODMgMS4xMTExMUgzLjE5NTRlLTA1QzMuMTk1NGUtMDUgMS4yMjIyMiAzLjE5NTRlLTA1IDEuMzYwMjQgMy4xOTU0ZS0wNSAxLjY2NjY3QzMuMTk1NGUtMDUgMS45NzMwOSAzLjE5NTRlLTA1IDIgMy4xOTU0ZS0wNSAyLjIyMjIySDAuNzI2MzExQzAuOTQzODUzIDIuODY4OTMgMS41MzIgMy4zMzMzMyAyLjIyMzUzIDMuMzMzMzNDMi45MTM0IDMuMzMzMzMgMy41MDIzNyAyLjg2OTggMy43MjE1NiAyLjIyMjIySDEwWiIgZmlsbD0iIzVBNTc1RCIvPgo8L3N2Zz4K");
            position: absolute;
            left: 0;
            top: 50%;
            transform: translate(0, -47%); } }

/*  --------------------------------------------------------------------------  *\

    MEDIA OBJECTS

    All of our media elements should be wrapped in a <figure> tag to help provide 
    context to the element.

\*  --------------------------------------------------------------------------  */
video, img, picture {
  display: block;
  width: 100%;
  height: auto; }

iframe {
  max-width: 100%; }

.video-w {
  position: relative;
  padding-top: 56.25%; }
  .video-w iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }

figure {
  margin: 0 0 1.5rem;
  /*  ----------------------------------------------------------------------  *\

        LAYOUT OPTIONS
    
        Comment or remove when the following layouts are not necessary

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    MEDIA LAYOUT - SIDE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    MEDIA LAYOUT - OVERLAP

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    MEDIA LAYOUT - CAPTION OVER

\*  --------------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\

        HOVER EFFECTS
    
        Comment or remove when the following effects are not necessary

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    MEDIA HOVER EFFECTS

    This file modifies what's found in the base components/basic/_media
    file.

    This is the base of the hover effects, and then their modifications to the 
    effects are located in the imported files here.

    If all figures will have the hover effects, move the following definitions
    to the media base file.

    If you only have one hover effect for all figures, combine those styles with
    the base media file as well.

    No classes should be needed at that point to modify them.

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    MEDIA HOVER EFFECT - DRAW BORDER

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    MEDIA HOVER EFFECT - FADE IN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    MEDIA HOVER EFFECT - MOVE UP

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    MEDIA HOVER EFFECT - ZOOM

\*  --------------------------------------------------------------------------  */ }
  @media (min-width: 768px) {
    figure {
      margin: 0 0 1.875rem; } }
  figure > figcaption {
    padding: 1.5rem;
    background: #bbadaa; }
    @media (min-width: 768px) {
      figure > figcaption {
        padding: 1.875rem; } }
    figure > figcaption :last-child {
      margin-bottom: 0; }
  @media (min-width: 768px) {
    figure.cap-side {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: row nowrap; }
      figure.cap-side img {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
        margin: 0 1.875rem 0 0; }
      figure.cap-side.alt img {
        order: 1;
        margin: 0 0 0 1.875rem; } }
  @media (min-width: 768px) {
    figure.cap-overlap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: row nowrap; }
      figure.cap-overlap img {
        position: relative;
        z-index: 0;
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: calc(50% + 1.875rem); }
      figure.cap-overlap figcaption {
        position: relative;
        z-index: 1;
        width: 50%;
        margin: 0 0 0 -1.875rem; }
      figure.cap-overlap.alt img {
        order: 1; }
      figure.cap-overlap.alt figcaption {
        width: 50%;
        margin: 0 -1.875rem 0 0; } }
  figure.cap-over {
    position: relative; }
    figure.cap-over > figcaption {
      position: absolute;
      z-index: 100;
      left: 0;
      bottom: 0;
      width: 100%;
      background: rgba(234, 180, 68, 0.75);
      color: #fff; }
  @media (min-width: 768px) {
    figure.hov-eff {
      position: relative;
      z-index: 0;
      overflow: hidden;
      color: #fff;
      text-align: center; }
      figure.hov-eff figcaption {
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        border: 0.2rem solid #f0d9a8;
        background: rgba(234, 180, 68, 0.5); } }
  @media (min-width: 768px) {
    figure.draw-border figcaption {
      opacity: 0;
      border: none;
      transition: opacity 0.25s; }
      figure.draw-border figcaption:before, figure.draw-border figcaption:after {
        position: absolute;
        z-index: -1;
        left: 50%;
        top: 50%;
        width: 100%;
        height: 100%;
        transition: transform 0.25s linear 0.15s;
        content: ""; }
      figure.draw-border figcaption:before {
        -webkit-transform: translate(-50%, -50%) scale(1, 0);
        -ms-transform: translate(-50%, -50%) scale(1, 0);
        transform: translate(-50%, -50%) scale(1, 0);
        border-left: 0.2rem solid #fff;
        border-right: 0.2rem solid #fff; }
      figure.draw-border figcaption:after {
        -webkit-transform: translate(-50%, -50%) scale(0, 1);
        -ms-transform: translate(-50%, -50%) scale(0, 1);
        transform: translate(-50%, -50%) scale(0, 1);
        border-top: 0.2rem solid #fff;
        border-bottom: 0.2rem solid #fff; }
    figure.draw-border:hover figcaption, figure.draw-border:focus figcaption {
      opacity: 1; }
      figure.draw-border:hover figcaption:before, figure.draw-border:focus figcaption:before {
        -webkit-transform: translate(-50%, -50%) scale(1, 1.4);
        -ms-transform: translate(-50%, -50%) scale(1, 1.4);
        transform: translate(-50%, -50%) scale(1, 1.4); }
      figure.draw-border:hover figcaption:after, figure.draw-border:focus figcaption:after {
        -webkit-transform: translate(-50%, -50%) scale(1.4, 1);
        -ms-transform: translate(-50%, -50%) scale(1.4, 1);
        transform: translate(-50%, -50%) scale(1.4, 1); } }
  @media (min-width: 768px) {
    figure.fade-in figcaption {
      -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
      transition: transform 0.25s, opacity 0.25s; }
    figure.fade-in:hover figcaption, figure.fade-in:focus figcaption {
      -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1);
      opacity: 1; } }
  @media (min-width: 768px) {
    figure.slide-up figcaption {
      left: 0;
      top: 100%;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      transform: translate(0, 0);
      width: 100%;
      border-bottom: none;
      border-left: none;
      border-right: none;
      transition: transform 0.25s; }
    figure.slide-up:hover figcaption, figure.slide-up:focus figcaption {
      -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
      transform: translate(0, -100%); } }
  @media (min-width: 768px) {
    figure.zoom > img, figure.zoom > picture > img, figure.zoom > video {
      transition: transform 0.25s; }
    figure.zoom figcaption {
      left: 0;
      top: 100%;
      -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
      transform: translate(0, -100%);
      width: 100%;
      border-left: none;
      border-right: none;
      border-bottom: none; }
    figure.zoom:hover > img, figure.zoom:hover > picture > img, figure.zoom:hover > video, figure.zoom:focus > img, figure.zoom:focus > picture > img, figure.zoom:focus > video {
      -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
      transform: scale(1.4); } }

/*  ----------------------------------------------------------------------  *\

    SIZING OPTIONS

\*  ----------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    COLUMNS

    This sets up the base for all columns.

\*  --------------------------------------------------------------------------  */
[class*="med-"] {
  height: auto; }

/*  --------------------------------------------------------------------------  *\

    GENERATE COLUMNS

    This mixin generates all columns creating XS-LG with 12 columns.

\*  --------------------------------------------------------------------------  */
.med-xs-1 {
  width: 8.33333%; }

.med-xs-2 {
  width: 16.66667%; }

.med-xs-3 {
  width: 25%; }

.med-xs-4 {
  width: 33.33333%; }

.med-xs-5 {
  width: 41.66667%; }

.med-xs-6 {
  width: 50%; }

.med-xs-7 {
  width: 58.33333%; }

.med-xs-8 {
  width: 66.66667%; }

.med-xs-9 {
  width: 75%; }

.med-xs-10 {
  width: 83.33333%; }

.med-xs-11 {
  width: 91.66667%; }

.med-xs-12 {
  width: 100%; }

@media (min-width: 576px) {
  .med-sm-1 {
    width: 8.33333%; }
  .med-sm-2 {
    width: 16.66667%; }
  .med-sm-3 {
    width: 25%; }
  .med-sm-4 {
    width: 33.33333%; }
  .med-sm-5 {
    width: 41.66667%; }
  .med-sm-6 {
    width: 50%; }
  .med-sm-7 {
    width: 58.33333%; }
  .med-sm-8 {
    width: 66.66667%; }
  .med-sm-9 {
    width: 75%; }
  .med-sm-10 {
    width: 83.33333%; }
  .med-sm-11 {
    width: 91.66667%; }
  .med-sm-12 {
    width: 100%; } }

@media (min-width: 768px) {
  .med-md-1 {
    width: 8.33333%; }
  .med-md-2 {
    width: 16.66667%; }
  .med-md-3 {
    width: 25%; }
  .med-md-4 {
    width: 33.33333%; }
  .med-md-5 {
    width: 41.66667%; }
  .med-md-6 {
    width: 50%; }
  .med-md-7 {
    width: 58.33333%; }
  .med-md-8 {
    width: 66.66667%; }
  .med-md-9 {
    width: 75%; }
  .med-md-10 {
    width: 83.33333%; }
  .med-md-11 {
    width: 91.66667%; }
  .med-md-12 {
    width: 100%; } }

@media (min-width: 992px) {
  .med-lg-1 {
    width: 8.33333%; }
  .med-lg-2 {
    width: 16.66667%; }
  .med-lg-3 {
    width: 25%; }
  .med-lg-4 {
    width: 33.33333%; }
  .med-lg-5 {
    width: 41.66667%; }
  .med-lg-6 {
    width: 50%; }
  .med-lg-7 {
    width: 58.33333%; }
  .med-lg-8 {
    width: 66.66667%; }
  .med-lg-9 {
    width: 75%; }
  .med-lg-10 {
    width: 83.33333%; }
  .med-lg-11 {
    width: 91.66667%; }
  .med-lg-12 {
    width: 100%; } }

@media (min-width: 1200px) {
  .med-xl-1 {
    width: 8.33333%; }
  .med-xl-2 {
    width: 16.66667%; }
  .med-xl-3 {
    width: 25%; }
  .med-xl-4 {
    width: 33.33333%; }
  .med-xl-5 {
    width: 41.66667%; }
  .med-xl-6 {
    width: 50%; }
  .med-xl-7 {
    width: 58.33333%; }
  .med-xl-8 {
    width: 66.66667%; }
  .med-xl-9 {
    width: 75%; }
  .med-xl-10 {
    width: 83.33333%; }
  .med-xl-11 {
    width: 91.66667%; }
  .med-xl-12 {
    width: 100%; } }

/*  --------------------------------------------------------------------------  *\

    MEDIA GALLERY

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    MEDIA GALLERY

\*  --------------------------------------------------------------------------  */
.media-gallery {
  margin: 0 0 4rem; }
  .media-gallery .gallery-thumbnails {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 1.5rem;
    column-gap: 1.5rem;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    template-rows: 1fr;
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
    justify-items: stretch;
    align-items: stretch;
    justify-content: stretch;
    align-content: stretch;
    grid-auto-flow: row;
    auto-flow: row; }
    .media-gallery .gallery-thumbnails figure {
      position: relative;
      overflow: hidden;
      margin: 0;
      padding: 100% 0 0; }
      .media-gallery .gallery-thumbnails figure:hover, .media-gallery .gallery-thumbnails figure:focus {
        cursor: pointer; }
      .media-gallery .gallery-thumbnails figure img {
        position: absolute;
        height: 100%;
        width: auto;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      .media-gallery .gallery-thumbnails figure figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        opacity: 0; }
  .media-gallery.grid-1 .gallery-thumbnails figure:nth-child(2) {
    grid-column: 3;
    grid-row: 2 / 4; }
  .media-gallery.grid-1 .gallery-thumbnails figure:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 1 / 3; }

.dialogs .dialog.gallery-dialog {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); }
  .dialogs .dialog.gallery-dialog > div {
    position: absolute;
    top: 6rem;
    left: 4rem;
    right: 4rem;
    bottom: 4rem; }
    .dialogs .dialog.gallery-dialog > div figure img {
      position: absolute;
      height: 100%;
      width: auto;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .dialogs .dialog.gallery-dialog > div figure figcaption {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: auto;
      text-align: center;
      background: transparent;
      padding: 1rem;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
      .dialogs .dialog.gallery-dialog > div figure figcaption h3, .dialogs .dialog.gallery-dialog > div figure figcaption p {
        color: #fff; }
      .dialogs .dialog.gallery-dialog > div figure figcaption h3 {
        margin: 0 0 1rem; }
      .dialogs .dialog.gallery-dialog > div figure figcaption p {
        margin: 0; }

/*  --------------------------------------------------------------------------  *\

    HOT SPOTS

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    HOT SPOTS

\*  --------------------------------------------------------------------------  */
.hot-spot {
  position: relative;
  z-index: 0;
  overflow: visible; }
  .hot-spot figcaption {
    position: absolute;
    z-index: 100;
    width: 0;
    height: 0;
    padding: 0;
    border: none;
    overflow: visible; }
    .hot-spot figcaption:nth-of-type(1) {
      left: 10%;
      top: 72%; }
    .hot-spot figcaption:nth-of-type(2) {
      left: 25%;
      top: 50%; }
    .hot-spot figcaption:nth-of-type(3) {
      left: 85%;
      top: 55%; }
    .hot-spot figcaption input[type="checkbox"] {
      position: absolute;
      width: 1px !important;
      height: 1px;
      padding: 0;
      margin: -1px;
      border: 0;
      overflow: hidden;
      clip: rect(0, 0, 0, 0); }
      .hot-spot figcaption input[type="checkbox"] + label {
        display: block;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 2.5rem;
        height: 2.5rem;
        border: .1rem solid #fff;
        border-radius: 2.5rem;
        background: rgba(74, 74, 74, 0.75);
        box-shadow: 0.3rem 0.3rem 1rem rgba(74, 74, 74, 0.8);
        color: #fff;
        font-size: 1.2;
        line-height: 2.5rem;
        font-weight: bold;
        text-align: center;
        cursor: pointer; }
      .hot-spot figcaption input[type="checkbox"] ~ div {
        display: none;
        position: absolute;
        z-index: 110;
        left: 50%;
        top: 0;
        -webkit-transform: translate(-50%, calc(-100% - 2.5rem));
        -ms-transform: translate(-50%, calc(-100% - 2.5rem));
        transform: translate(-50%, calc(-100% - 2.5rem));
        width: 25rem;
        padding: 2.5rem;
        border: .1rem solid #fff;
        border-radius: 2.5rem;
        background: rgba(74, 74, 74, 0.75);
        box-shadow: 0.3rem 0.3rem 1rem rgba(74, 74, 74, 0.8);
        color: #fff; }
      .hot-spot figcaption input[type="checkbox"]:checked + label {
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg); }
      .hot-spot figcaption input[type="checkbox"]:checked ~ div {
        display: block; }

/*  --------------------------------------------------------------------------  *\

    TABLES - BASIC STYLING

\*  --------------------------------------------------------------------------  */
table {
  min-width: 100%;
  margin: 0 auto 2em;
  border-collapse: collapse;
  overflow: auto;
  border: none;
  font-size: 0.75rem;
  /*  --------------------------------------------------------------------------  *\

        SIZE OPTIONS

        @import 'size/_sm';
        @import 'size/_lg';

    \*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

        ADDITIONAL STYLING
        
        @import 'styling/_pricing';

    \*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

   TABLE - COMPARISON

\*  --------------------------------------------------------------------------  */ }
  @media (min-width: 992px) {
    table {
      display: table;
      font-size: 0.875rem; } }
  table td, table th {
    background: none;
    border: 0.0625rem solid #e3e3e3;
    border-left: none;
    border-right: none;
    padding: 0.75rem;
    text-align: left; }
  table th {
    font-weight: 600;
    letter-spacing: .08em;
    width: 25%;
    text-align: right; }
    table th:after {
      content: ":"; }
    table th:empty:after {
      display: none; }
  table tfoot {
    color: #ef9662;
    font-size: .75em; }
    table tfoot td {
      padding: 1.5rem;
      border: 0.1rem solid #eab444; }
  table.comparison {
    border: none;
    table-layout: fixed; }
    table.comparison article {
      min-width: 300px; }
    table.comparison thead th {
      border-top: none; }
      table.comparison thead th:after {
        display: none; }
    table.comparison tbody th:after {
      display: none; }
    table.comparison th,
    table.comparison td {
      vertical-align: top; }
      table.comparison th:first-child,
      table.comparison td:first-child {
        width: 12.5%; }
    table.comparison .compareTable-headingText {
      display: block;
      min-width: 150px; }
      table.comparison .compareTable-headingText:after {
        margin-left: 0.25rem;
        content: ":"; }
    table.comparison .card {
      text-align: left;
      padding-left: 0;
      width: auto; }
    table.comparison .opts-swatch {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      align-content: flex-start;
      flex-flow: row wrap; }
      table.comparison .opts-swatch p {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        margin: 0 0.375rem 0.75rem; }
        table.comparison .opts-swatch p span {
          font-weight: 600; }
      table.comparison .opts-swatch input {
        position: absolute;
        width: 1px !important;
        height: 1px;
        padding: 0;
        margin: -1px;
        border: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0); }
      table.comparison .opts-swatch label {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        align-content: stretch;
        flex-flow: row wrap;
        width: calc(25% - 0.5rem);
        margin: 0 0.25rem 0.5rem;
        height: auto;
        border: none;
        cursor: pointer;
        box-shadow: 0 0 0 #eab444;
        transition: all .25s linear;
        background: #fff; }
        @media (min-width: 992px) {
          table.comparison .opts-swatch label {
            width: calc(20% - 0.5rem); } }
        table.comparison .opts-swatch label span {
          display: block;
          padding: 80% 0 0;
          border: 0.125rem solid #fff;
          box-shadow: inset 0 0 0 0.125rem #fff;
          background-position: 50% 50%;
          background-size: cover !important;
          background-repeat: no-repeat;
          overflow: hidden;
          min-width: 33.333%;
          max-width: 100%;
          width: 33.333%;
          -webkit-box-flex: 1 1 auto;
          -webkit-flex: 1 1 auto;
          -ms-flex: 1 1 auto;
          flex: 1 1 auto; }
          table.comparison .opts-swatch label span.form-option-image {
            padding: 0; }
            table.comparison .opts-swatch label span.form-option-image > img {
              border: 0.125rem solid #fff; }
          table.comparison .opts-swatch label span.title {
            width: 100%;
            padding: 0;
            margin: 0.25rem 0 0.25rem;
            text-align: center;
            font-size: 0.625rem;
            line-height: 1.25; }
        table.comparison .opts-swatch label:hover, table.comparison .opts-swatch label:focus {
          box-shadow: 0 0 0.25rem #eab444; }
        table.comparison .opts-swatch label[aria-label="N/A"] {
          display: none !important; }
      table.comparison .opts-swatch input:checked + .swatch > span:not(.title) {
        border-color: #eab444; }
      table.comparison .opts-swatch input:disabled + .swatch {
        cursor: not-allowed;
        position: relative; }
        table.comparison .opts-swatch input:disabled + .swatch:before {
          content: "";
          height: 0.125rem;
          width: 150%;
          position: absolute;
          z-index: 100;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(-50%, -50%) rotate(-38deg);
          -ms-transform: translate(-50%, -50%) rotate(-38deg);
          transform: translate(-50%, -50%) rotate(-38deg);
          background: #FF0000; }
        table.comparison .opts-swatch input:disabled + .swatch:after {
          content: "";
          position: absolute;
          z-index: 100;
          left: 0;
          top: 0;
          width: calc(100% - 0.25rem);
          height: calc(100% - 0.25rem);
          border: 0.125rem solid #FF0000; }
        table.comparison .opts-swatch input:disabled + .swatch:hover, table.comparison .opts-swatch input:disabled + .swatch:focus {
          box-shadow: none; }
        table.comparison .opts-swatch input:disabled + .swatch span {
          z-index: 0;
          opacity: 0.667; }

/*  --------------------------------------------------------------------------  *\

    STICKY ELEMENTS
    
    @import 'sticky/_row';
    @import 'sticky/_column';

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    FORMS

    Each form component should have it's own file each alteration should have it's
    own file.

    The default files below will be used to show a basic form with labels above.
    
    Additional styling of forms can be found in the themes > component library
    folder to show examples of the other forms found in the component library.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    FORMS > MIXINS

\*  --------------------------------------------------------------------------  */
form {
  /*  ----------------------------------------------------------------------  *\

        Custom Checkboxes and Radio Buttons

    \*  ----------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\

        Custom Styling of Select Boxes

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FORMS > CHOSEN

    Chosen, a Select Box Enhancer for jQuery and Prototype
    by Patrick Filler for Harvest, http://getharvest.com

    Version 1.8.7
    Full source at https://github.com/harvesthq/chosen
    Copyright (c) 2011-2018 Harvest http://getharvest.com

    MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FORMS > CHOSEN IMPORTS OF OPTIONS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FORMS > CHOSEN > SINGLE SELECT OPTION

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FORMS > CHOSEN > RESULTS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FORMS > CHOSEN > ACTIVE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FORMS > CHOSEN > DISALBED STATE

\*  --------------------------------------------------------------------------  */
  /*  ----------------------------------------------------------------------  *\

        Form label position and styling
    
        All of the below are not needed for all websites, generally only one, or 
        two of the below files are needed.
    
        l-above - places the label above the field
        l-inside - places the label within the field
        l-left - places the label to the left of the field
        l-attached - place the label to the left and styles it to look attached
            to the field
        
        &.l-left {
        }
        
        &.l-attached {
            @import 'label-attached/_base';
        }
        &.small {
            @import 'label-above/base';
        }
        &.l-left {
            @import 'label-left/base';
        }        
        &.l-inside {
            @import 'label-inside/_base';
        }

        &.l-above {
            @import 'label-above/_base';
        }

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FORMS > GET IN TOUCH MODIFICATIONS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FORMS > GET IN TOUCH MODIFICATIONS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    FORMS > INVERTED FORM COLORS

\*  --------------------------------------------------------------------------  */ }
  form .chosen-container {
    position: relative;
    z-index: 0;
    display: block; }
    form .chosen-container .chosen-drop {
      position: absolute;
      left: 0;
      top: 100%;
      width: 100%;
      border: 1px solid #eab444;
      border-top: none;
      background: #fff;
      display: none; }
    form .chosen-container li {
      list-style: none; }
      form .chosen-container li:before {
        display: none; }
    form .chosen-container a {
      cursor: pointer; }
    form .chosen-container.chosen-with-drop {
      z-index: 1000; }
      form .chosen-container.chosen-with-drop .chosen-drop {
        display: block; }
    form .chosen-container .search-choice .group-name, form .chosen-container .chosen-single .group-name {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      color: #ef9662; }
      form .chosen-container .search-choice .group-name:after, form .chosen-container .chosen-single .group-name:after {
        content: ":";
        margin-left: 2px; }
  form .chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0.75rem;
    border: 0.1rem solid #ef9662;
    background: #fff;
    color: #eab444;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1; }
    form .chosen-container-single .chosen-single span {
      display: block;
      oveflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    form .chosen-container-single .chosen-single abbr {
      display: block; }
    form .chosen-container-single .chosen-single:after {
      display: block;
      position: absolute;
      left: calc(100% - 1.5rem);
      top: 50%;
      -webkit-transform: translate(0, -50%) rotate(45deg);
      -ms-transform: translate(0, -50%) rotate(45deg);
      transform: translate(0, -50%) rotate(45deg);
      height: 5px;
      width: 5px;
      border-bottom: 2px solid #eab444;
      border-right: 2px solid #eab444;
      transition: transform 0.125s linear;
      content: ""; }
  form .chosen-container-single .chosen-default {
    color: #eab444; }
  form .chosen-container-single .chosen-search {
    position: relative;
    margin: 0;
    padding: 0.75rem;
    white-space: nowrap; }
    form .chosen-container-single .chosen-search input[type="text"] {
      padding: 0.75rem;
      width: 100%;
      border: 1px solid #eab444; }
  form .chosen-container-single .chosen-drop {
    margin-top: -1px; }
  form .chosen-container-single.chosen-container-single-nosearch .chosen-search {
    display: none; }
  form .chosen-container .chosen-results {
    overflow-x: hidden;
    margin: 0 0.75rem 0.75rem;
    max-height: 240px;
    -webkit-overflow-scrolling: touch; }
    form .chosen-container .chosen-results li {
      display: none;
      padding: 0.375rem;
      color: #eab444; }
      form .chosen-container .chosen-results li.active-result {
        display: list-item; }
      form .chosen-container .chosen-results li.disabled-result {
        display: list-item;
        color: #f0d9a8;
        font-style: italic; }
      form .chosen-container .chosen-results li.highlighted {
        display: list-item;
        color: #ef9662; }
      form .chosen-container .chosen-results li.no-results {
        display: list-item;
        color: #f0d9a8;
        font-style: italic; }
      form .chosen-container .chosen-results li.group-result {
        display: list-item;
        font-weight: bold; }
      form .chosen-container .chosen-results li.group-option {
        padding-left: 1.875rem; }
      form .chosen-container .chosen-results li em {
        font-style: normal;
        text-decoration: underline; }
  form .chosen-container-active.chosen-with-drop .chosen-single:after {
    -webkit-transform: translate(0, -50%) rotate(-135deg);
    -ms-transform: translate(0, -50%) rotate(-135deg);
    transform: translate(0, -50%) rotate(-135deg); }
  form .chosen-container-active .chosen-choices {
    border: 1px solid #eab444; }
    form .chosen-container-active .chosen-choices li.search-field input[type="text"] {
      color: #eab444; }
  form .chosen-disabled {
    opacity: 0.5 !important;
    cursor: default; }
    form .chosen-disabled .chosen-single {
      cursor: default; }
    form .chosen-disabled .chosen-choices .search-choice .search-choice-close {
      cursor: default; }
  form.l-left {
    /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL LEFT

\*  --------------------------------------------------------------------------  */ }
    form.l-left {
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL LEFT > VARIABLES

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL LEFT > FORM ELEMENT

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL LEFT > LABELS

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL LEFT > INPUTS

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL LEFT > SELECTS

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL LEFT > TEXTAREAS

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL LEFT > FEEDBACK STATES

\*  --------------------------------------------------------------------------  */ }
      form.l-left .form-el {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: row wrap;
        margin-bottom: 0.75rem;
        font-size: 1rem; }
        form.l-left .form-el.multi-line {
          align-items: flex-start; }
      form.l-left label {
        display: block;
        order: 0;
        margin: 0;
        width: 12.5rem; }
        form.l-left label small {
          color: #FF0000;
          font-size: .75em; }
      form.l-left input:not([type="radio"]):not([type="checkbox"]):not([type="button"]) {
        display: block;
        order: 1;
        width: calc(100% - 12.5rem - 0.9375rem);
        height: 2.5rem;
        padding: 0.75rem;
        font-size: 0.875rem;
        border: 1px solid #e3e3e3;
        border-radius: 0.3125rem; }
        form.l-left input:not([type="radio"]):not([type="checkbox"]):not([type="button"]):focus {
          border-color: #bbadaa; }
        form.l-left input:not([type="radio"]):not([type="checkbox"]):not([type="button"]):disabled {
          background: #e3e3e3;
          color: #bbadaa;
          font-style: italic;
          cursor: not-allowed; }
      form.l-left select {
        display: block;
        order: 1;
        width: calc(100% - 12.5rem - 0.9375rem);
        height: 2.5rem;
        padding: 0.75rem;
        background: #fff;
        font-size: 0.875rem;
        border: 1px solid #e3e3e3; }
        form.l-left select:focus {
          border-color: #bbadaa; }
        form.l-left select:disabled {
          background: #e3e3e3;
          color: #bbadaa;
          font-style: italic;
          cursor: not-allowed; }
      form.l-left textarea {
        display: block;
        order: 1;
        width: calc(100% - 12.5rem - 0.9375rem);
        height: calc(6em + 2.25rem);
        padding: 0.75rem;
        border: 1px solid #e3e3e3;
        font-size: 0.875rem;
        border-radius: 0.3125rem; }
        form.l-left textarea:focus {
          border-color: #bbadaa; }
      form.l-left .form-actions {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-flow: row nowrap; }
        form.l-left .form-actions [class*="btn-"] {
          white-space: nowrap;
          width: auto;
          -webkit-box-flex: 0 0 auto;
          -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto; }
      form.l-left .form-inlineMessage {
        width: 100%;
        order: 10;
        color: #FF0000;
        margin: 0.5rem 0 0 13.4375rem;
        font-size: 0.75rem; }
      form.l-left .form-field--error input:not([type="radio"]):not([type="checkbox"]):not([type="button"]), form.l-left .form-field--error select, form.l-left .form-field--error textarea {
        border-color: #FF0000; }
      form.l-left .form-field--success input:not([type="radio"]):not([type="checkbox"]):not([type="button"]), form.l-left .form-field--success select, form.l-left .form-field--success textarea {
        border-color: #00FF00; }
  form.l-inside {
    /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL INSIDE

\*  --------------------------------------------------------------------------  */ }
    form.l-inside {
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL INSIDE > VARIABLES

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL INSIDE > FORM ELEMENT

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL INSIDE > LABELS

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FOCUS STATES

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL INSIDE > INPUTS

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL INSIDE > SELECTS

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL INSIDE > TEXTAREA

\*  --------------------------------------------------------------------------  */
      /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL INSIDE > CHOSEN

\*  --------------------------------------------------------------------------  */ }
      form.l-inside .form-el {
        position: relative;
        margin-bottom: 0.75rem; }
      form.l-inside label {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translate(1rem, -50%);
        -ms-transform: translate(1rem, -50%);
        transform: translate(1rem, -50%);
        transition: transform 0.15s linear;
        padding: 0 0.25rem; }
      form.l-inside input[type="file"] + label, form.l-inside input[type="date"] + label, form.l-inside input[type="range"] + label, form.l-inside select + label, form.l-inside .chosen + label {
        -webkit-transform: translate(1rem, -200%) scale(0.75);
        -ms-transform: translate(1rem, -200%) scale(0.75);
        transform: translate(1rem, -200%) scale(0.75); }
      form.l-inside textarea + label {
        top: 1rem;
        font-size: .75em; }
      form.l-inside input:not([type="radio"]):not([type="checkbox"]):focus + label, form.l-inside input:not([type="radio"]):not([type="checkbox"]):valid + label {
        -webkit-transform: translate(1rem, -150%);
        -ms-transform: translate(1rem, -150%);
        transform: translate(1rem, -150%);
        font-size: .75em;
        background: #fff; }
      form.l-inside input:not([type="radio"]):not([type="checkbox"]) {
        background: #fff;
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0.75rem 1rem;
        background: #fff;
        border: 1px solid #ef9662; }
        form.l-inside input:not([type="radio"]):not([type="checkbox"]):focus {
          border-color: #eab444; }
        form.l-inside input:not([type="radio"]):not([type="checkbox"]):disabled {
          background: #e3e3e3;
          color: #bbadaa;
          font-style: italic;
          cursor: not-allowed; }
      form.l-inside select {
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        height: 2.625rem;
        border: 1px solid #ef9662; }
        form.l-inside select:focus {
          border-color: #eab444; }
        form.l-inside select:disabled {
          background: #e3e3e3;
          color: #bbadaa;
          font-style: italic;
          cursor: not-allowed; }
      form.l-inside textarea {
        display: block;
        width: 100%;
        height: calc(6em + 2rem);
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        background: #fff;
        margin: 0;
        line-height: 1.5;
        border: 1px solid #ef9662; }
        form.l-inside textarea:focus {
          border-color: #eab444; }
        form.l-inside textarea:disabled {
          background: #e3e3e3;
          color: #bbadaa;
          font-style: italic;
          cursor: not-allowed; }
      form.l-inside .form-inlineMessage {
        width: 100%;
        order: 10;
        color: #FF0000;
        margin: 0.25rem 0 0;
        font-size: 0.75rem; }
  form.l-above {
    /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL ABOVE

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL ABOVE > VARIABLES

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL ABOVE > FORM ELEMENT

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL ABOVE > LABELS

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL ABOVE > INPUTS

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL ABOVE > SELECTS

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    FORMS > LABEL ABOVE > TEXTAREAS

\*  --------------------------------------------------------------------------  */ }
    form.l-above .form-el {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      flex-flow: column nowrap;
      margin: 0 0 1rem; }
    form.l-above .form-btns {
      width: 100%;
      margin: 2rem 0 1.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: row nowrap; }
      @media (max-width: 767.9px) {
        form.l-above .form-btns {
          margin-top: 0.5rem; } }
      form.l-above .form-btns.ha-left {
        justify-content: flex-start; }
    form.l-above label, form.l-above .label {
      display: block;
      order: 0;
      margin: 0 0 0.5rem; }
      form.l-above label small, form.l-above .label small {
        color: #FF0000;
        font-size: .75em; }
    form.l-above input:not([type="radio"]):not([type="checkbox"]) {
      display: block;
      width: 100%;
      padding: 0.5rem 1rem;
      border: 0.0625rem solid #e3e3e3;
      border-radius: 0;
      background: #fff;
      font-size: 1rem;
      line-height: 1.5; }
      form.l-above input:not([type="radio"]):not([type="checkbox"]):hover, form.l-above input:not([type="radio"]):not([type="checkbox"]):focus {
        border-color: #bbadaa; }
      form.l-above input:not([type="radio"]):not([type="checkbox"]):disabled {
        background: #e3e3e3;
        color: #bbadaa;
        font-style: italic;
        cursor: not-allowed; }
    form.l-above select {
      display: block;
      width: 100%;
      border: 0.0625rem solid #B5B5B5;
      border-radius: 0;
      background: #fff;
      height: 2.625rem;
      font-size: 1rem;
      padding-left: 1rem;
      appearance: none;
      background: url(../img/dropdown-caret.png) no-repeat 95% 50%/8px; }
      form.l-above select:hover, form.l-above select:focus {
        border-color: #eab444; }
    form.l-above textarea {
      display: block;
      order: 1;
      width: 100%;
      height: calc(6em + ($formLAGutter * 2));
      padding: 0.625rem 1rem;
      border: 0.0625rem solid #B5B5B5;
      border-radius: 0; }
      form.l-above textarea:hover, form.l-above textarea:focus {
        border-color: #eab444; }
      form.l-above textarea:disabled {
        background: #e3e3e3;
        color: #bbadaa;
        font-style: italic;
        cursor: not-allowed; }
    form.l-above .form-inlineMessage {
      width: 100%;
      order: 10;
      color: #FF0000;
      margin: 0.25rem 0 0;
      font-size: 0.75rem; }
  form.form-gc-balance {
    /*  --------------------------------------------------------------------------  *\

    FORMS > GIFT CERTIFICATE BALANCE

\*  --------------------------------------------------------------------------  */ }
    form.form-gc-balance {
      margin: 2rem 0 0; }
      form.form-gc-balance label {
        display: block;
        margin: 0 0 0.5rem; }
      form.form-gc-balance .form-field div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        align-content: stretch;
        flex-flow: row nowrap; }
      form.form-gc-balance .form-field input {
        width: 100%;
        -webkit-box-flex: 0 1 auto;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        border-radius: 0;
        border: 0.0625rem solid #f1e6d6;
        padding: 0.25rem 0.5rem; }
      form.form-gc-balance .form-field .btn-primary {
        white-space: nowrap; }
  form.form-git {
    margin: 1rem 0 0;
    background: #f6f6f6; }
    @media (min-width: 768px) {
      form.form-git {
        margin: 1.25rem 0 0;
        display: flex;
        flex-direction: column; }
        form.form-git .form-el {
          width: 100%; }
          form.form-git .form-el input:not([type="radio"]):not([type="checkbox"]) {
            color: #5a575d;
            background: white;
            border-radius: 0;
            border-color: #e3e3e3; }
        form.form-git .form-btns {
          width: 100%; }
          form.form-git .form-btns button {
            border-bottom: none;
            padding: 0.6875rem 0.6875rem 0.75rem 0.6875rem; } }
    @media (min-width: 992px) {
      form.form-git {
        margin: 1.5rem 0 0;
        flex-direction: row; }
        form.form-git .form-el {
          width: 70%; }
        form.form-git .form-btns {
          width: 30%; }
          form.form-git .form-btns button {
            width: 100%;
            border-bottom: none; } }
  form.form-newsletter {
    margin: 1rem 0 0; }
    @media (min-width: 768px) {
      form.form-newsletter {
        margin: 1.25rem 0 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-flow: row wrap; }
        form.form-newsletter .form-el {
          width: calc(100% - 8.75rem); }
        form.form-newsletter .form-btns {
          width: 7.75rem; } }
    @media (min-width: 992px) {
      form.form-newsletter {
        margin: 1.5rem 0 0; } }
    form.form-newsletter .form-copy {
      width: 100%;
      margin: 1rem 0 0; }
  form .hs-form .hbspt-form {
    display: none; }
  form.invert label {
    color: #f1e6d6; }
  form.invert input:not([type="radio"]):not([type="checkbox"]), form.invert textarea {
    background: none;
    color: #fff; }
    form.invert input:not([type="radio"]):not([type="checkbox"]):focus + label, form.invert input:not([type="radio"]):not([type="checkbox"]):valid + label, form.invert textarea:focus + label, form.invert textarea:valid + label {
      -webkit-transform: translate(1rem, -165%);
      -ms-transform: translate(1rem, -165%);
      transform: translate(1rem, -165%);
      font-size: .75em;
      background: #eab444; }

/*  --------------------------------------------------------------------------  *\

    FORMS - CHECK AND RADIO BUTTONS

\*  --------------------------------------------------------------------------  */
.form-cr {
  margin: 0 0 0.75rem;
  font-size: 1rem; }
  .form-cr.last {
    margin: 1rem 0 0; }
  .form-cr input[type="checkbox"], .form-cr input[type="radio"] {
    position: absolute;
    width: 1px !important;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0); }
    .form-cr input[type="checkbox"] + label, .form-cr input[type="radio"] + label {
      position: relative; }
      .form-cr input[type="checkbox"] + label:before, .form-cr input[type="radio"] + label:before {
        height: 0.875rem;
        width: 0.875rem;
        border: 0.125rem solid #666666;
        content: "";
        display: block;
        float: left;
        margin: 0.1875rem 0.5rem 0 0; }
  .form-cr input[type="checkbox"].check-only + label {
    position: relative;
    display: block;
    height: 1.125rem;
    width: 1.125rem;
    margin: 0; }
    .form-cr input[type="checkbox"].check-only + label:before {
      margin: 0; }
  .form-cr input[type="checkbox"] + label:after {
    content: "";
    display: block;
    height: 0.125rem;
    width: 0.375rem;
    border: 0.125rem solid transparent;
    position: absolute;
    left: -1.0625rem;
    top: 0.5rem;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg); }
  .form-cr input[type="checkbox"]:checked + label:after {
    border-left-color: #666666;
    border-bottom-color: #666666; }
  .form-cr input[type="radio"] + label {
    padding: 0 0 0 1.625rem; }
    .form-cr input[type="radio"] + label:before {
      border-radius: 0.875rem;
      position: absolute;
      top: 0;
      left: 0; }
  .form-cr input[type="radio"]:checked + label:before {
    background: #666666;
    box-shadow: inset 0 0 0 0.1875rem #fff; }

/*  --------------------------------------------------------------------------  *\

    NAVIGATION RESET

    This removes the styling from our basic list styling.

\*  --------------------------------------------------------------------------  */
nav ul, nav ol {
  margin: 0;
  list-style: none; }

nav li {
  position: static;
  padding: 0; }
  nav li:before {
    display: none; }
  nav li + li {
    margin: 0; }

nav a {
  text-decoration: none; }

/*  --------------------------------------------------------------------------  *\

    NAVIGATIONS

    This is where all the sites navigations should be defined and included

    Each navigation should have it's own file

    The main, and utility, navigations should be defined in the 
        structure/header.scss file

\*  --------------------------------------------------------------------------  */
nav, .nav {
  /*  --------------------------------------------------------------------------  *\

    CATALOG NAVIGATIONS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    LANDING NAVIGATIONS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    BREADCRUMB

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    INTERIOR NAVIGATIONS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    INTERIOR NAVIGATIONS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PAGINATION

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    JUMP NAVIGATIONS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    NAV - SOCIAL

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    NAV - SHARE

\*  --------------------------------------------------------------------------  */ }
  nav.catalog ul, .nav.catalog ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-flow: row wrap;
    margin: 0 -0.75rem; }
    @media (min-width: 768px) {
      nav.catalog ul, .nav.catalog ul {
        margin: 0 -0.9375rem; } }
  nav.catalog li, .nav.catalog li {
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 0 1rem;
    width: 50%; }
    nav.catalog li:nth-last-child(n + 3), .nav.catalog li:nth-last-child(n + 3) {
      margin-bottom: 1.5rem; }
    @media (min-width: 768px) {
      nav.catalog li, .nav.catalog li {
        width: 33.333%; }
        nav.catalog li:nth-last-child(3), .nav.catalog li:nth-last-child(3) {
          margin-bottom: 0; }
        nav.catalog li:nth-last-child(n + 5), .nav.catalog li:nth-last-child(n + 5) {
          margin-bottom: 1.875rem; } }
    nav.catalog li:before, .nav.catalog li:before {
      display: none; }
    nav.catalog li + li, .nav.catalog li + li {
      margin: 0; }
    nav.catalog li.has-subchildren, .nav.catalog li.has-subchildren {
      width: 100%; }
      nav.catalog li.has-subchildren + li, .nav.catalog li.has-subchildren + li {
        margin: 2rem 0 0; }
  nav.catalog h2, .nav.catalog h2 {
    text-align: center; }
  nav.catalog span, .nav.catalog span {
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    order: 1;
    width: 50%; }
  nav.catalog img, .nav.catalog img {
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    order: 2;
    width: 58.333%;
    margin: -2.1875rem 0 0 -8.333%; }
  nav.catalog a, .nav.catalog a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, #EA93BE 0%, #E29BBE 0.01%, #D78FB7 42.79%, #C079AA 100%);
    border: 0.3125rem solid #fff;
    box-shadow: 0 0 0 0.0625rem #f0d9a8;
    color: #fff;
    font-size: 1.4375rem;
    line-height: 1.30435;
    font-weight: 300;
    padding: 0.625rem 0.9375rem 0; }
    nav.catalog a:hover, nav.catalog a:focus, .nav.catalog a:hover, .nav.catalog a:focus {
      box-shadow: 0 0 0 0.125rem #eab444; }
  nav.landing, .nav.landing {
    padding-bottom: 4.6875rem;
    border-bottom: 1px solid #ef9662; }
    @media (max-width: 767.9px) {
      nav.landing, .nav.landing {
        margin-top: 1.5rem; } }
    nav.landing ul, .nav.landing ul {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%; }
      nav.landing ul::after, .nav.landing ul::after {
        content: '';
        flex: auto; }
      nav.landing ul .img-wrap, .nav.landing ul .img-wrap {
        position: relative;
        width: 100%;
        padding: 100% 0 0;
        overflow: hidden; }
        nav.landing ul .img-wrap img, .nav.landing ul .img-wrap img {
          position: absolute;
          top: 0;
          left: 50%;
          width: auto;
          height: 100%;
          transform: translate(-50%, 0); }
    nav.landing li, .nav.landing li {
      position: relative; }
      @media (max-width: 575.9px) {
        nav.landing li, .nav.landing li {
          margin: 1rem 1rem 0 0;
          width: calc(1/1*100% - (1 - 1/1)*1rem); }
          nav.landing li:nth-child(1n), .nav.landing li:nth-child(1n) {
            margin-right: 0; }
          nav.landing li:nth-child(-n+1), .nav.landing li:nth-child(-n+1) {
            margin-top: 0; } }
      @media (min-width: 576px) and (max-width: 767.9px) {
        nav.landing li, .nav.landing li {
          margin: 1rem 1rem 0 0;
          width: calc(1/2*100% - (1 - 1/2)*1rem); }
          nav.landing li:nth-child(2n), .nav.landing li:nth-child(2n) {
            margin-right: 0; }
          nav.landing li:nth-child(-n+2), .nav.landing li:nth-child(-n+2) {
            margin-top: 0; } }
      @media (min-width: 768px) and (max-width: 991.9px) {
        nav.landing li, .nav.landing li {
          margin: 1.5rem 1.5rem 0 0;
          width: calc(1/3*100% - (1 - 1/3)*1.5rem); }
          nav.landing li:nth-child(3n), .nav.landing li:nth-child(3n) {
            margin-right: 0; }
          nav.landing li:nth-child(-n+3), .nav.landing li:nth-child(-n+3) {
            margin-top: 0; } }
      @media (min-width: 992px) {
        nav.landing li, .nav.landing li {
          margin: 2rem 2rem 0 0;
          width: calc(1/4*100% - (1 - 1/4)*2rem); }
          nav.landing li:nth-child(4n), .nav.landing li:nth-child(4n) {
            margin-right: 0; }
          nav.landing li:nth-child(-n+4), .nav.landing li:nth-child(-n+4) {
            margin-top: 0; } }
      nav.landing li.has-subchildren, .nav.landing li.has-subchildren {
        max-width: 100%;
        width: 100%;
        margin-right: 0; }
        nav.landing li.has-subchildren + li, .nav.landing li.has-subchildren + li {
          margin: 4rem 0 0; }
    nav.landing h2, .nav.landing h2 {
      padding-bottom: 0.625rem;
      border-bottom: 1px solid #ef9662; }
      nav.landing h2 a, .nav.landing h2 a {
        color: #a57d2c; }
        nav.landing h2 a:hover, nav.landing h2 a:focus, .nav.landing h2 a:hover, .nav.landing h2 a:focus {
          color: #8c6c28;
          text-decoration: none; }
    nav.landing li > a, .nav.landing li > a {
      display: block;
      color: #eacb86;
      text-align: center;
      font-size: 0.875rem;
      line-height: 1.71429;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em; }
      nav.landing li > a:hover, nav.landing li > a:focus, .nav.landing li > a:hover, .nav.landing li > a:focus {
        color: #eab444; }
    nav.landing div.outer, .nav.landing div.outer {
      position: absolute;
      bottom: 0;
      padding: 1.75rem;
      width: 100%; }
      @media (min-width: 768px) {
        nav.landing div.outer, .nav.landing div.outer {
          padding: 1.375rem; } }
      @media (min-width: 992px) {
        nav.landing div.outer, .nav.landing div.outer {
          padding: 1rem; } }
      nav.landing div.outer div, .nav.landing div.outer div {
        background-color: #fff;
        outline: 8px solid rgba(255, 255, 255, 0.5);
        padding: 0.8125rem 0.125rem;
        border: 2px solid #ef9662;
        overflow: hidden; }
  nav.breadcrumbs, .nav.breadcrumbs {
    display: none;
    font-size: 0.875rem;
    margin: 0 0 2.25rem;
    color: #bbadaa; }
    .product nav.breadcrumbs, .product .nav.breadcrumbs {
      margin: 0 0 1.5rem; }
    @media (min-width: 992px) {
      nav.breadcrumbs, .nav.breadcrumbs {
        margin: 0 0 3.25rem; }
        .product nav.breadcrumbs, .product .nav.breadcrumbs {
          margin: 0 0 2rem; } }
    @media (min-width: 768px) {
      nav.breadcrumbs, .nav.breadcrumbs {
        display: block; } }
    nav.breadcrumbs a, .nav.breadcrumbs a {
      color: #5a575d; }
      nav.breadcrumbs a:hover, nav.breadcrumbs a:focus, .nav.breadcrumbs a:hover, .nav.breadcrumbs a:focus {
        color: #eab444; }
    nav.breadcrumbs span, .nav.breadcrumbs span {
      color: #5a575d; }
    nav.breadcrumbs ol, .nav.breadcrumbs ol {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      align-content: center;
      flex-flow: row wrap;
      list-style: none;
      margin: 0; }
    nav.breadcrumbs li, .nav.breadcrumbs li {
      z-index: 1; }
      nav.breadcrumbs li:before, .nav.breadcrumbs li:before {
        display: none; }
      nav.breadcrumbs li + li, .nav.breadcrumbs li + li {
        position: relative;
        padding: 0 0 0 1.875rem; }
        nav.breadcrumbs li + li:before, .nav.breadcrumbs li + li:before {
          position: absolute;
          left: 0.9375rem;
          top: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          display: block;
          content: ">";
          font-weight: 400; }
  nav.int, .nav.int {
    margin: 1.5rem 0 0; }
    @media (min-width: 768px) {
      nav.int, .nav.int {
        margin: 2.25rem 0 0; } }
    @media (min-width: 992px) {
      nav.int, .nav.int {
        margin: 2.75rem 0 0; } }
    @media print {
      nav.int, .nav.int {
        display: none; } }
    nav.int ul, .nav.int ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: center;
      align-content: center;
      flex-flow: row nowrap;
      margin: 0 auto;
      width: 100%;
      overflow: auto; }
    nav.int a, .nav.int a {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-flow: row nowrap;
      color: #5a575d;
      padding: 1rem 0.5rem; }
      nav.int a:hover, nav.int a:focus, .nav.int a:hover, .nav.int a:focus {
        color: #a57d2c;
        text-decoration: underline; }
    nav.int svg, .nav.int svg {
      width: 1.25rem;
      height: 1.25rem;
      margin: 0 0.5rem 0 0;
      fill: #eab444; }
    nav.int li, .nav.int li {
      flex-shrink: 0; }
      nav.int li.is-active a, .nav.int li.is-active a {
        color: #8c6c28;
        font-weight: 600; }
  nav.int-v, .nav.int-v {
    font-size: 0.875rem;
    color: #231f20; }
    nav.int-v a, .nav.int-v a {
      color: #231f20; }
      nav.int-v a:hover, nav.int-v a:focus, .nav.int-v a:hover, .nav.int-v a:focus {
        text-decoration: underline;
        color: #98262b; }
    nav.int-v .active > a, .nav.int-v .active > a {
      text-decoration: underline; }
    nav.int-v li, .nav.int-v li {
      padding: 0 0 0.5rem; }
      nav.int-v li:before, .nav.int-v li:before {
        display: none; }
      nav.int-v li:last-child, .nav.int-v li:last-child {
        padding: 0; }
    nav.int-v ul ul, .nav.int-v ul ul {
      padding: 0 0 0 1rem;
      margin: 0; }
  nav.pagination, .nav.pagination {
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 1.5rem 0 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-flow: row nowrap;
    background: #f6f6f6;
    border-radius: 0;
    padding: 1.25rem 1rem 1rem;
    font-size: 1rem;
    line-height: 1.375; }
    @media (min-width: 768px) {
      nav.pagination, .nav.pagination {
        margin: 2rem 0 0; } }
    @media (min-width: 992px) {
      nav.pagination, .nav.pagination {
        margin: 3rem 0 0; } }
    nav.pagination div, .nav.pagination div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: row nowrap;
      width: 100%; }
      @media (max-width: 991.9px) {
        nav.pagination div.show, nav.pagination div.pages, .nav.pagination div.show, .nav.pagination div.pages {
          display: none; } }
      @media (min-width: 768px) {
        nav.pagination div, .nav.pagination div {
          justify-content: flex-end; }
          nav.pagination div.show, .nav.pagination div.show {
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-flow: row nowrap; } }
    nav.pagination label, .nav.pagination label {
      margin: 0 0.5rem 0 0; }
    nav.pagination select, .nav.pagination select {
      background: none;
      border: none;
      font-size: 1rem;
      color: #5a575d;
      appearance: none;
      -webkit-appearance: none;
      background: url(../img/dropdown-caret.png) no-repeat 80% 50%/10px;
      min-width: 50px; }
    nav.pagination p, .nav.pagination p {
      display: none;
      margin: 0; }
      @media (min-width: 768px) {
        nav.pagination p, .nav.pagination p {
          display: block; } }
      nav.pagination p strong, .nav.pagination p strong {
        color: #5a575d; }
    nav.pagination ul li a, .nav.pagination ul li a {
      font-weight: 400;
      text-decoration: none; }
      nav.pagination ul li a:hover, .nav.pagination ul li a:hover {
        color: #ef9662; }
        nav.pagination ul li a:hover svg, .nav.pagination ul li a:hover svg {
          fill: #ef9662; }
    nav.pagination ul, nav.pagination ol, .nav.pagination ul, .nav.pagination ol {
      margin: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-end;
      align-items: stretch;
      align-content: stretch;
      flex-flow: row nowrap; }
    @media (min-width: 768px) {
      nav.pagination ul, .nav.pagination ul {
        margin: 0 0 0 2rem; } }
    nav.pagination a, .nav.pagination a {
      display: block;
      color: #686969;
      font-weight: normal; }
      nav.pagination a:hover, nav.pagination a:focus, .nav.pagination a:hover, .nav.pagination a:focus {
        color: #eacb86; }
      nav.pagination a svg, .nav.pagination a svg {
        width: 1.25rem;
        height: 1.25rem;
        pointer-events: none;
        transition: all .25s; }
      nav.pagination a[disabled], .nav.pagination a[disabled] {
        opacity: .5;
        pointer-events: none; }
    nav.pagination li + li, .nav.pagination li + li {
      margin: 0 0 0 1.5rem; }
    nav.pagination li:first-child svg, .nav.pagination li:first-child svg {
      margin: 0 0.5rem 0 0; }
    nav.pagination li[class*=previous], nav.pagination li[class*=next], .nav.pagination li[class*=previous], .nav.pagination li[class*=next] {
      width: 1.25rem; }
      nav.pagination li[class*=previous] svg, nav.pagination li[class*=next] svg, .nav.pagination li[class*=previous] svg, .nav.pagination li[class*=next] svg {
        display: block;
        margin: 0 !important;
        width: 1.25rem; }
    nav.pagination li[class*=current] a, .nav.pagination li[class*=current] a {
      font-weight: 600; }
    nav.pagination li:last-child svg, .nav.pagination li:last-child svg {
      margin: 0 0 0 0.5rem; }
  nav.jn, .nav.jn {
    display: none;
    margin: 0;
    width: 100%;
    padding: 0.75rem 0;
    transition: 0.2s;
    background: #666666;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1; }
    @supports (position: sticky) {
      nav.jn, .nav.jn {
        position: relative;
        position: -webkit-sticky;
        position: sticky;
        z-index: 1000; }
        @supports (position: -webkit-sticky) {
          nav.jn, .nav.jn {
            top: 7.9375rem; } }
        @supports (position: sticky) {
          nav.jn, .nav.jn {
            top: 7.9375rem; } } }
    @media (min-width: 768px) {
      nav.jn, .nav.jn {
        padding: 1.125rem 0;
        font-size: 0.875rem; } }
    @media (min-width: 992px) {
      nav.jn, .nav.jn {
        padding: 1.5rem 0;
        font-size: 1rem;
        display: block; } }
    nav.jn::-webkit-scrollbar-track, nav.jn::-webkit-scrollbar, nav.jn::-webkit-scrollbar-thumb, .nav.jn::-webkit-scrollbar-track, .nav.jn::-webkit-scrollbar, .nav.jn::-webkit-scrollbar-thumb {
      display: none; }
    nav.jn ul, .nav.jn ul {
      margin: 0 auto;
      max-width: 1254px;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-flow: row nowrap; }
      @media (min-width: 992px) {
        nav.jn ul, .nav.jn ul {
          width: 95%; } }
      @media (min-width: 1200px) {
        nav.jn ul, .nav.jn ul {
          width: 90%; } }
      nav.jn ul li, .nav.jn ul li {
        padding: 0 0.5rem; }
        nav.jn ul li:before, .nav.jn ul li:before {
          display: none; }
        nav.jn ul li a, .nav.jn ul li a {
          white-space: nowrap;
          color: #fff; }
  nav.social, .nav.social {
    margin: 0;
    font-size: 1.25em; }
    nav.social ul, .nav.social ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-flow: row nowrap; }
    nav.social li + li, .nav.social li + li {
      margin: 0 0 0 1.5rem; }
  nav .twitter-icon, .nav .twitter-icon {
    fill: white !important;
    stroke: #5a575d; }
  nav .share-line, .nav .share-line {
    margin: 1.125rem 0 0; }
  nav.share, .nav.share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row nowrap;
    margin: 0;
    font-size: 1.25em;
    order: 3; }
    @media (min-width: 768px) {
      nav.share, .nav.share {
        width: 100%;
        margin: 0 0 0 15%; } }
    nav.share h5, .nav.share h5 {
      margin: 0 1rem 0 0;
      font-size: 0.875rem;
      font-weight: normal; }
    nav.share ul, .nav.share ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-flow: row nowrap; }
    nav.share li + li, .nav.share li + li {
      margin: 0 0 0 0.5rem; }
    nav.share a, .nav.share a {
      position: relative;
      display: block;
      width: 2rem;
      height: 2rem;
      padding: 0.125rem;
      color: #eacb86;
      transition: all 0.25s linear; }
      nav.share a:hover, nav.share a:focus, .nav.share a:hover, .nav.share a:focus {
        color: #312e34; }
    nav.share svg, .nav.share svg {
      transition: all 0.25s linear;
      fill: currentColor;
      display: block;
      width: 1.25rem;
      height: 1.25rem;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .product nav.share, .product .nav.share {
      margin: 1.5rem 0; }

/*  --------------------------------------------------------------------------  *\

    INTERACTIVE COMPONENTS

    Each interactive component should have it's own file, along with the base file
    for each interactive component, we should have alteration files for each version.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    ACCORDION

\*  --------------------------------------------------------------------------  */
.accordion {
  margin: 0 0 1.875rem;
  border-bottom: 0.0625rem solid #bbadaa;
  /* -------------------------- *\
    
    Indicator Options
    
    Comment out what you don't want to include.  Also, if only one style is used, remove the class
    name from the imported file to reduce output of code.

    //@import 'accordions/indicators/_triangle';
    //@import 'accordions/indicators/_chevron';
    
    \* -------------------------- */
  /*  --------------------------------------------------------------------------  *\

    ACCORDION - INDICATOR - PLUS/MINUS TOGGLE

\*  --------------------------------------------------------------------------  */
  /* -------------------------- *\
    
    Sizing Options
    
    Comment out what you don't want to include.  Also, if only one style is used, remove the class
    name from the imported file to reduce output of code.

    @import 'accordions/sizing/_sm';
    @import 'accordions/sizing/_lg';
    
    \* -------------------------- */
  /* -------------------------- *\


    Invert

    \* -------------------------- */ }
  .accordion > dt {
    border-top: 0.0625rem solid #bbadaa; }
    .accordion > dt ~ dt {
      margin: 0; }
    .accordion > dt > button {
      position: relative;
      width: 100%;
      padding: 0.75rem 3.125rem 0.75rem 0;
      background: none;
      color: #eab444;
      text-align: left;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: all .25s; }
      .accordion > dt > button:hover, .accordion > dt > button:focus {
        color: #ef9662; }
  .accordion > dd {
    width: 100%;
    padding: 1.875rem 0; }
    .accordion > dd :last-child {
      margin-bottom: 0; }
    .accordion > dd li a {
      display: inline-block; }
  .accordion > dt > button:before, .accordion > dt > button:after {
    position: absolute;
    left: 100%;
    top: 50%;
    width: 0.6875rem;
    height: 0.125rem;
    background: currentColor;
    transition: all .25s;
    content: ""; }
  .accordion > dt > button:before {
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%); }
  .accordion > dt > button:after {
    -webkit-transform: translate(-100%, -50%) rotate(90deg);
    -ms-transform: translate(-100%, -50%) rotate(90deg);
    transform: translate(-100%, -50%) rotate(90deg); }
  .accordion > dt > button[aria-expanded="true"]:after {
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%); }
  .accordion.acc-options {
    /*  --------------------------------------------------------------------------  *\

    ACCORDION - INDICATOR - PLUS/MINUS TOGGLE

\*  --------------------------------------------------------------------------  */ }
    .accordion.acc-options > dt > button:before, .accordion.acc-options > dt > button:after {
      position: absolute;
      right: 0.75rem;
      top: 50%;
      left: auto;
      width: 0.75rem;
      height: 0.125rem;
      background: #eab444;
      transition: all .25s;
      content: ""; }
    .accordion.acc-options > dt > button:before {
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .accordion.acc-options > dt > button:after {
      -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
      transform: translate(-50%, -50%) rotate(90deg); }
    .accordion.acc-options > dt > button[aria-expanded="true"]:before {
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg); }
    .accordion.acc-options > dt > button[aria-expanded="true"]:after {
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg); }
    .accordion.acc-options > dt > button:hover:before, .accordion.acc-options > dt > button:hover:after, .accordion.acc-options > dt > button:focus:before, .accordion.acc-options > dt > button:focus:after {
      background: #ef9662; }
  .invert .accordion dt button, .dk-textured .accordion dt button {
    color: #fff; }
    .invert .accordion dt button:before, .invert .accordion dt button:after, .dk-textured .accordion dt button:before, .dk-textured .accordion dt button:after {
      background: #fff; }
    .invert .accordion dt button:hover, .invert .accordion dt button:focus, .dk-textured .accordion dt button:hover, .dk-textured .accordion dt button:focus {
      color: #eacb86; }
      .invert .accordion dt button:hover:before, .invert .accordion dt button:hover:after, .invert .accordion dt button:focus:before, .invert .accordion dt button:focus:after, .dk-textured .accordion dt button:hover:before, .dk-textured .accordion dt button:hover:after, .dk-textured .accordion dt button:focus:before, .dk-textured .accordion dt button:focus:after {
        background: #eacb86; }
  .invert .accordion dd, .dk-textured .accordion dd {
    color: #fff; }

/*  --------------------------------------------------------------------------  *\

    CAROUSEL - SLICK SLIDER

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    SLICK SLIDER - CORE

    You should never need to touch this file.

\*  --------------------------------------------------------------------------  */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  flex-flow: row nowrap;
  position: relative;
  left: 0;
  top: 0;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    display: none; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.thumbnail {
  display: none; }
  .thumbnail img {
    aspect-ratio: 4 / 3; }

.slick-slide {
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/*  --------------------------------------------------------------------------  *\

    OWL CAROUSEL - DOTS > COUNTER

\*  --------------------------------------------------------------------------  */
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  width: 100%;
  margin: 0; }
  .slick-dots li {
    padding: 0;
    display: flex; }
    .slick-dots li + li {
      margin: 0 0 0 0.5rem; }
    .slick-dots li:before {
      display: none; }
    .slick-dots li button {
      text-indent: -9999em;
      overflow: hidden;
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 0.5rem;
      background: #DDDEE1; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        background: #717481; }
    .slick-dots li.slick-active button {
      background: #717481;
      width: 0.6875rem;
      height: 0.6875rem;
      border-radius: 0.6875rem; }

/*  --------------------------------------------------------------------------  *\

    CAROUSEL - SLICK ARROW

\*  --------------------------------------------------------------------------  */
.slick-arrow {
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  text-indent: 2.5rem;
  background-color: #eab444;
  transition: .25s background-color linear;
  color: #ffffff; }
  .slick-arrow.slick-disabled {
    pointer-events: none;
    background-color: white;
    border: 1px solid #5a575d; }
    .slick-arrow.slick-disabled:hover, .slick-arrow.slick-disabled:focus {
      background-color: white; }
  .slick-arrow:hover, .slick-arrow:focus {
    background-color: rgba(234, 180, 68, 0.3); }

.slick-prev {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjYzMjggNC4yMTA5NkMxNi40Mzc1IDQuMDE1NjUgMTYuMTcxOSAzLjkwNTI5IDE1Ljg5NTUgMy45MDUyOUMxNS42MTkyIDMuOTA1MjkgMTUuMzU0NSA0LjAxNTY0IDE1LjE1OTIgNC4yMTA5Nkw3LjYwNzQzIDExLjc2MjdMNy42MDY0NSAxMS43NjI3QzcuNDExMTQgMTEuOTU4IDcuMzAwNzggMTIuMjIzNyA3LjMwMDc4IDEyLjVDNy4zMDA3OCAxMi43NzY0IDcuNDExMTMgMTMuMDQyIDcuNjA2NDUgMTMuMjM3M0wxNS4xNTgyIDIwLjc4OTFMMTUuMTU5MiAyMC43ODkxQzE1LjU2NTQgMjEuMTk2MyAxNi4yMjU2IDIxLjE5NjMgMTYuNjMyOCAyMC43ODkxQzE3LjA0IDIwLjM4MTggMTcuMDQgMTkuNzIxNyAxNi42MzI4IDE5LjMxNTRMOS44MTczIDEyLjQ5OTlMMTYuNjMyOCA1LjY4NDQ0QzE2LjgyODEgNS40ODkxMiAxNi45Mzg1IDUuMjI0NDkgMTYuOTM4NSA0Ljk0ODExQzE2LjkzODUgNC42NzE3NCAxNi44MjgxIDQuNDA2MTEgMTYuNjMyOCA0LjIxMDgxTDE2LjYzMjggNC4yMTA5NloiIGZpbGw9IiM4MTg0ODYiLz4KPC9zdmc+Cg==");
  background-image: url("../icons/left-arrow.svg");
  background-position: 43% 50%;
  background-repeat: no-repeat;
  background-size: 1.25rem 1.25rem; }

.slick-next {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMzY3MiAyMC43ODlDOC41NjI1MSAyMC45ODQ0IDguODI4MTUgMjEuMDk0NyA5LjEwNDUgMjEuMDk0N0M5LjM4MDg1IDIxLjA5NDcgOS42NDU1MiAyMC45ODQ0IDkuODQwODIgMjAuNzg5TDE3LjM5MjYgMTMuMjM3M0wxNy4zOTM1IDEzLjIzNzNDMTcuNTg4OSAxMy4wNDIgMTcuNjk5MiAxMi43NzYzIDE3LjY5OTIgMTIuNUMxNy42OTkyIDEyLjIyMzYgMTcuNTg4OSAxMS45NTggMTcuMzkzNSAxMS43NjI3TDkuODQxOCA0LjIxMDk0TDkuODQwODIgNC4yMTA5NEM5LjQzNDU3IDMuODAzNzEgOC43NzQ0MiAzLjgwMzcxIDguMzY3MiA0LjIxMDk0QzcuOTU5OTcgNC42MTgxNiA3Ljk1OTk3IDUuMjc4MzEgOC4zNjcyIDUuNjg0NTZMMTUuMTgyNyAxMi41MDAxTDguMzY3MiAxOS4zMTU2QzguMTcxODggMTkuNTEwOSA4LjA2MTUyIDE5Ljc3NTUgOC4wNjE1MiAyMC4wNTE5QzguMDYxNTIgMjAuMzI4MyA4LjE3MTg3IDIwLjU5MzkgOC4zNjcyIDIwLjc4OTJMOC4zNjcyIDIwLjc4OVoiIGZpbGw9IiNBMTg1NEMiLz4KPC9zdmc+Cg==");
  background-image: url("../icons/right-arrow.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 1.25rem 1.25rem; }

/*  --------------------------------------------------------------------------  *\

    CAROUSEL - SLICK SLIDER

\*  --------------------------------------------------------------------------  */
.carousel-category {
  position: relative; }
  .carousel-category .slide {
    border: 0.0625rem solid #f0d9a8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: justify-content;
    align-items: stretch;
    flex-flow: row wrap;
    border-radius: 1rem; }
    .carousel-category .slide .img-w {
      border: 0.5rem solid #fff;
      border-right: none;
      border-radius: 1rem 0 0 1rem;
      overflow: hidden; }
      @media (min-width: 768px) {
        .carousel-category .slide .img-w {
          width: 50%;
          -webkit-box-flex: 0 0 auto;
          -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto; } }
    .carousel-category .slide .content {
      padding: 1.75rem 1rem;
      width: 50%;
      -webkit-box-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      border: 0.5rem solid #fff;
      border-left: none;
      border-radius: 0 1rem 1rem 0;
      overflow: hidden;
      color: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: stretch;
      flex-flow: column wrap; }
      .carousel-category .slide .content h3 {
        color: #fff; }
        .carousel-category .slide .content h3 small {
          color: #fff; }
      @media (min-width: 768px) {
        .carousel-category .slide .content {
          padding: 2rem; } }
      @media (min-width: 992px) {
        .carousel-category .slide .content {
          padding: 3rem; } }
  .carousel-category .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  .carousel-category .slick-prev {
    right: calc(100% + 1rem); }
  .carousel-category .slick-next {
    left: calc(100% + 1rem); }

/*  --------------------------------------------------------------------------  *\

    DIALOG

\*  --------------------------------------------------------------------------  */
.swal2-container {
  /*  ----------------------------------------------------------------------  *\

        DIALOG - CORE FILES

    \*  ----------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    DIALOG - BACKDROP

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    DIALOG - MODAL

\*  --------------------------------------------------------------------------  */ }
  .swal2-container {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(90, 87, 93, 0.5);
    top: 0 !important; }
  .swal2-container .swal2 {
    /*  --------------------------------------------------------------------------  *\

    DIALOG - MODAL > MODAL

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    DIALOG - MODAL > HEADER

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    DIALOG - MODAL > CONTENT

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    DIALOG - MODAL > ACTIONS

\*  --------------------------------------------------------------------------  */ }
    .swal2-container .swal2-modal {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      flex-flow: column nowrap;
      width: 90vw;
      max-width: 500px;
      max-height: 90vh;
      height: auto;
      padding: 2.5rem;
      border: 0.0625rem solid #ef9662;
      border-radius: 0;
      background: #fff;
      box-shadow: 0 0 1.5rem rgba(33, 35, 34, 0.5); }
      .swal2-container .swal2-modal.lg {
        max-width: 992px; }
      @media (min-width: 768px) {
        .swal2-container .swal2-modal {
          height: auto;
          max-height: 90vh;
          overflow: auto; } }
    .swal2-container .swal2.modal-off {
      display: none; }
    .swal2-container .swal2-header {
      padding: 0 0 1.5rem;
      position: relative;
      text-align: center; }
      .swal2-container .swal2-header h2 {
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        text-align: center;
        padding: 0;
        margin: 0;
        display: block !important; }
      .swal2-container .swal2-header a {
        position: absolute;
        right: 1rem;
        top: 1rem;
        font-size: 2rem;
        text-decoration: none;
        color: #bbadaa; }
        .swal2-container .swal2-header a:hover, .swal2-container .swal2-header a:focus {
          color: #eacb86; }
      .swal2-container .swal2-header .swal2-close {
        position: absolute;
        top: -1rem;
        right: -1rem;
        color: #bbadaa;
        background: none;
        border: none; }
    .swal2-container .swal2-warning {
      position: relative;
      margin: 0 auto;
      background-color: #FF0000;
      border-radius: 50%;
      width: 4rem;
      height: 4rem;
      color: #fff;
      font-size: 2rem; }
      .swal2-container .swal2-warning .swal2-icon-content {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .swal2-container .swal2-content {
      width: 100%;
      padding: 0;
      text-align: center !important;
      font-size: 0.75rem; }
      .swal2-container .swal2-content p.goldline {
        border-top: 1px solid #ef9662; }
      .swal2-container .swal2-content .goldline-offset {
        align-items: center;
        display: flex;
        flex-flow: row wrap; }
        .swal2-container .swal2-content .goldline-offset:after {
          background-color: #ef9662;
          content: '';
          display: inline-block;
          flex: 1 1 0px;
          height: 1px;
          width: auto; }
      .swal2-container .swal2-content h2 {
        color: #ef9662;
        text-align: inherit; }
      .swal2-container .swal2-content input {
        border: 1px solid #e3e3e3;
        margin: 0 auto;
        padding: 0.625rem;
        max-width: 4.375rem;
        margin-right: 0.625rem;
        margin-left: 0.625rem;
        appearance: none; }
      .swal2-container .swal2-content span {
        display: none; }
      @media (min-width: 768px) {
        .swal2-container .swal2-content input::placeholder {
          color: transparent; }
        .swal2-container .swal2-content span {
          display: inline-block; } }
      .swal2-container .swal2-content h4 {
        text-align: left;
        background: linear-gradient(#ffffff 0%, #ffffff 49%, #eab444 50%, #eab444 51%, #ffffff 52%, #ffffff 100%);
        color: #eab444; }
        .swal2-container .swal2-content h4 span {
          background-color: #fff;
          padding-right: 0.625rem; }
      .swal2-container .swal2-content tr, .swal2-container .swal2-content td {
        border: 0;
        padding: 0.3125rem; }
      .swal2-container .swal2-content .swal2-validation-message {
        display: none;
        align-items: center;
        justify-content: center;
        padding: .625em;
        overflow: hidden;
        background: #f0f0f0;
        color: red;
        font-size: 1em;
        font-weight: 300; }
    .swal2-container .swal2-actions {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: row nowrap; }
      .swal2-container .swal2-actions .button {
        appearance: none;
        position: relative;
        display: inline-flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        padding: 0.75rem 1.75rem;
        margin: 0;
        border: 0.125rem solid currentColor;
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 1.21429;
        text-align: center;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        transition: all .25s;
        width: 100%;
        margin: 0.25rem !important; }
        .stamped-file-uploader .swal2-container .swal2-actions .button {
          border: none; }
        .swal2-container .swal2-actions .button + [class*="btn-"] {
          margin: 0.9375rem 0 0; }
        .swal2-container .swal2-actions .button svg {
          display: inline-block;
          width: 1.25rem;
          height: 1rem;
          fill: currentColor; }
        @media (min-width: 992px) {
          .swal2-container .swal2-actions .button {
            width: auto;
            margin: 0; }
            .swal2-container .swal2-actions .button + [class*="btn-"] {
              margin: 0 0 0 0.9375rem; } }
        .swal2-container .swal2-actions .button:hover, .swal2-container .swal2-actions .button:focus {
          text-decoration: none; }
        .swal2-container .swal2-actions .button.swal2-cancel {
          font-weight: 700;
          font-size: 14px;
          line-height: 18px;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          width: auto;
          padding: 0.6875rem 1.8125rem; }
          .swal2-container .swal2-actions .button.swal2-cancel:hover, .swal2-container .swal2-actions .button.swal2-cancel:focus {
            background: none;
            border-color: none;
            color: #000;
            text-decoration: none; }
          .swal2-container .swal2-actions .button.swal2-cancel:active {
            background: none;
            border-color: none;
            color: #000; }
        .swal2-container .swal2-actions .button.swal2-confirm {
          border-radius: 0;
          background: #eab444;
          border: 2px solid #eab444;
          color: #fff;
          font-weight: 700;
          font-size: 14px;
          line-height: 17px;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          width: auto;
          padding: 0.6875rem 1.8125rem; }
          .swal2-container .swal2-actions .button.swal2-confirm:hover, .swal2-container .swal2-actions .button.swal2-confirm:focus {
            background: #fff;
            border-color: #eab444;
            color: #eab444;
            text-decoration: none; }
          .swal2-container .swal2-actions .button.swal2-confirm:active {
            background: #f1e6d6;
            border-color: #f1e6d6;
            color: #fff; }

/*  --------------------------------------------------------------------------  *\

    TABS - MOBILE (SAME FOR BOTH VERTICAL AND HORIZONTAL LAYOUTS)

\*  --------------------------------------------------------------------------  */
.tabs {
  margin: 0 0 1.875rem;
  /*  ----------------------------------------------------------------------  *\
    
    Indicator Options
    
    Re-use the accordion styling for this piece.
    @import 'accordions/indicators/_chevron';
    @import 'accordions/indicators/_triangle';
    
    \*  ---------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ACCORDION - INDICATOR - PLUS/MINUS TOGGLE

\*  --------------------------------------------------------------------------  */ }
  .tabs > dt > button {
    position: relative;
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 0;
    text-align: left;
    border-bottom: 0.1rem solid #e3e3e3;
    color: rgba(90, 87, 93, 0.5);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em; }
    .tabs > dt > button:hover, .tabs > dt > button:focus {
      color: rgba(90, 87, 93, 0.7); }
    .tabs > dt > button[aria-expanded="true"] {
      color: #5a575d; }
    @media (min-width: 768px) {
      .tabs > dt > button:before, .tabs > dt > button:after {
        display: none; } }
  .tabs > dd {
    width: 100%;
    padding: 1.5rem 0; }
    .tabs > dd :last-child {
      margin-bottom: 0; }
      .tabs > dd :last-child tbody tr:first-child th, .tabs > dd :last-child tbody tr:first-child td {
        border-top: none; }
    .tabs > dd .notes {
      margin: 1.5rem 0 0;
      font-size: 0.875rem; }
    .tabs > dd:first-of-type {
      padding-bottom: 0; }
  .tabs > dt > button:before, .tabs > dt > button:after {
    position: absolute;
    left: 100%;
    top: 50%;
    width: 0.6875rem;
    height: 0.125rem;
    background: currentColor;
    transition: all .25s;
    content: ""; }
  .tabs > dt > button:before {
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%); }
  .tabs > dt > button:after {
    -webkit-transform: translate(-100%, -50%) rotate(90deg);
    -ms-transform: translate(-100%, -50%) rotate(90deg);
    transform: translate(-100%, -50%) rotate(90deg); }
  .tabs > dt > button[aria-expanded="true"]:after {
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%); }

/*  --------------------------------------------------------------------------  *\

    TABS - HORIZONTAL

\*  --------------------------------------------------------------------------  */
@media (min-width: 768px) {
  .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-end;
    flex-flow: row wrap;
    /* -------------------------- *\
        TAB OPTIONS

        Comment out what you don't want to include.  Also, if only one style is used, remove the class
        name from the imported file to reduce output of code.
        @import 'tabs-horizontal/tabs/_traditional';
        @import 'tabs-horizontal/tabs/_button';
        \* -------------------------- */
    /*  --------------------------------------------------------------------------  *\

    TABS - HORIZONTAL - MINIMAL

\*  --------------------------------------------------------------------------  */
    /* -------------------------- *\
        TAB INDICATOR

        Comment out what you don't want to include.  Also, if only one style is used, remove the class
        name from the imported file to reduce output of code.
        @import 'tabs-horizontal/_indicator';
        \* -------------------------- */
    /* -------------------------- *\
        TAB ALIGNMENT

        Comment out what you don't want to include.  Also, if only one style is used, remove the class
        name from the imported file to reduce output of code.
        @import 'tabs-horizontal/alignment/_left';
        @import 'tabs-horizontal/alignment/_right';
        @import 'tabs-horizontal/alignment/_bottom';
        \* -------------------------- */
    /* -------------------------- *\
        TAB SIZING

        Comment out what you don't want to include.  Also, if only one style is used, remove the class
        name from the imported file to reduce output of code.
        @import 'tabs-horizontal/sizing/_sm';
        @import 'tabs-horizontal/sizing/_lg';
        \* -------------------------- */ }
    .tabs > dt {
      position: relative;
      z-index: 100;
      width: 100%;
      padding: 0; }
      .tabs > dt > button {
        width: 100%;
        border: none;
        padding: 0;
        transition: all .25s;
        color: #8a8a8a; }
        .tabs > dt > button[aria-expanded="true"] {
          color: #5a575d; }
        .tabs > dt > button:hover, .tabs > dt > button:focus {
          color: rgba(90, 87, 93, 0.9); } }
    @media (min-width: 768px) and (min-width: 768px) {
      .tabs > dt {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        order: 0;
        width: auto; } }

@media (min-width: 768px) {
    .tabs > dd {
      position: relative;
      z-index: 0;
      width: 100%; } }
    @media (min-width: 768px) and (min-width: 768px) {
      .tabs > dd {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        order: 1;
        width: 100%;
        margin: 0;
        padding: 2rem 0;
        border-top: 1px solid #e3e3e3;
        margin-top: -0.09375rem; }
        .tabs > dd:only-of-type {
          margin: 2.5rem 0 0; } }
    @media (min-width: 768px) and (min-width: 992px) {
      .tabs > dd {
        padding: 2.5rem 0; }
        .tabs > dd .desc-w {
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          flex-flow: row nowrap; }
        .tabs > dd .desc {
          -webkit-box-flex: 0 0 auto;
          -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto;
          width: calc(100%); }
        .tabs > dd .notes {
          -webkit-box-flex: 0 0 auto;
          -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto;
          width: calc(37.5% - 1rem);
          margin: 0; } }

@media (min-width: 768px) {
      .tabs > dd :last-child {
        margin-bottom: 0; }
    .tabs > dt ~ dt {
      margin: 0 0 0 2.5rem; }
    .tabs > dt > button {
      padding: 0 0 0.75rem;
      border-bottom: 0.125rem solid transparent; }
      .tabs > dt > button[aria-expanded="true"] {
        border-bottom-color: #5a575d; } }

/*  --------------------------------------------------------------------------  *\

    ANIMATIONS.CSS

    This library can be used to add simple animations to things, it should 
    only be included if animations are going to be used to enhance the website 
    because this file adds a substantial amount of weight to the file size.

    Go into the _animations.scss file and remove any animations that aren't going
    to be used on the website so that the final CSS file's output is reduced to only 
    what is necessary.

    Animations.css is good to use with Owl Carousel to alter the animation effects
    of the slide transitions. Examples of this in action can be seen on 
    interactive/carousels.html .

    We also use animations.css to control the animated loading of content. Examples 
    of all the animations available are located in interactive/animations.html.

    @import '_animations';

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    ANIMATION LIBRARY

    These animations do not use the comments that are found in other places w/in
    the component library, they should all follow the same convention of 
    outside - in so that we maintain that organization w/in our styling.

    Comment out animations not used by the design.

\*  --------------------------------------------------------------------------  */
.animated, .in-view {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > BOUNCE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > BOUNCE IN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > BOUNCE IN DOWN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > BOUNCE IN LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > BOUNCE IN RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > BOUNCE IN UP

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > BOUNCE OUT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > BOUNCE OUT DOWN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > BOUNCE OUT LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > BOUNCE OUT RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > BOUNCE OUT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE IN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE IN DOWN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE IN DOWN BIG

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE IN LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE IN LEFT BIG

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE IN RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE IN RIGHT BIG

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE IN UP

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE IN UP BIG

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE OUT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE OUT DOWN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE OUT DOWN BIG

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE OUT LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE OUT LEFT BIG

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE OUT RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE OUT RIGHT BIG

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE OUT UP

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FADE OUT UP BIG

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FLASH

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FLIP

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FLIP IN X

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FLIP IN Y

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FLIP OUT X

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > FLIP OUT Y

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > HEADSHAKE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > HEARTBEAT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > HINGE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > JACK IN THE BOX

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > JELLO

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > LIGHT SPEED IN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > LIGHT SPEED OUT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > PULSE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROLL IN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROLL OUT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROTATION

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROTATE IN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROTATE IN DOWN LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROTATE IN DOWN RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROTATE IN UP LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROTATE IN UP RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROTATE OUT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROTATE OUT DOWN LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROTATE OUT DOWN RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROTATE OUT UP LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ROTATE OUT UP RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > RUBBERBAND

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > SHAKE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > SLIDE IN DOWN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > SLIDE IN LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > SLIDE IN RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > SLIDE IN UP

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > SLIDE OUT DOWN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > SLIDE OUT LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > SLIDE OUT RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > SLIDE OUT UP

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > SWING

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > TADA

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > WOBBLE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ZOOM IN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ZOOM IN DOWN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ZOOM IN LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ZOOM IN RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ZOOM IN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ZOOM OUT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ZOOM OUT DOWN

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ZOOM OUT LEFT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ZOOM OUT RIGHT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ANIMATION > ZOOM OUT UP

\*  --------------------------------------------------------------------------  */ }
  .animated.infinite, .in-view.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite; }
  .animated.delay-1s, .in-view.delay-1s {
    -webkit-animation-delay: 1000ms;
    animation-delay: 1000ms; }
  .animated.delay-2s, .in-view.delay-2s {
    -webkit-animation-delay: 2000ms;
    animation-delay: 2000ms; }
  .animated.delay-3s, .in-view.delay-3s {
    -webkit-animation-delay: 3000ms;
    animation-delay: 3000ms; }
  .animated.delay-4s, .in-view.delay-4s {
    -webkit-animation-delay: 4000ms;
    animation-delay: 4000ms; }
  .animated.delay-5s, .in-view.delay-5s {
    -webkit-animation-delay: 5000ms;
    animation-delay: 5000ms; }
  .animated.fast, .in-view.fast {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms; }
  .animated.faster, .in-view.faster {
    -webkit-animation-duration: 500s;
    animation-duration: 500s; }
  .animated.slow, .in-view.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s; }
  .animated.slower, .in-view.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s; }

@-webkit-keyframes bounce {
  from,
  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: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%,
  43% {
    -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);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  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);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from,
  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: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%,
  43% {
    -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);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  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);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
  .animated.bounce, .in-view.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom; }

@-webkit-keyframes bounceIn {
  from,
  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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from,
  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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
  .animated.bounce-in, .in-view.bounce-in {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from,
  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);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -ms-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInDown {
  from,
  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);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -ms-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.bounce-in-down, .in-view.bounce-in-down {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from,
  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);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInLeft {
  from,
  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);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.bounce-in-left, .in-view.bounce-in-left {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from,
  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); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    -ms-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    -ms-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInRight {
  from,
  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); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    -ms-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    -ms-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.bounce-in-right, .in-view.bounce-in-right {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from,
  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); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from,
  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); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.bounce-in-up, .in-view.bounce-in-up {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
  .animated.bounce-out, .in-view.bounce-out {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
  .animated.bounce-out-down, .in-view.bounce-out-down {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
  .animated.bounce-out-left, .in-view.bounce-out-left {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
  .animated.bounce-out-right, .in-view.bounce-out-right {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
  .animated.bounce-out-up, .in-view.bounce-out-up {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
  .animated.fade-in, .in-view.fade-in {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.fade-in-down, .in-view.fade-in-down {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.fade-in-down-big, .in-view.fade-in-down-big {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.fade-in-left, .in-view.fade-in-left {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.fade-in-left-big, .in-view.fade-in-left-big {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.fade-in-right, .in-view.fade-in-right {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.fade-in-right-big, .in-view.fade-in-right-big {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.fade-in-up, .in-view.fade-in-up {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.fade-in-up-big, .in-view.fade-in-up-big {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
  .animated.fade-out, .in-view.fade-out {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
  .animated.fade-out-down, .in-view.fade-out-down {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
  .animated.fade-out-down-big, .in-view.fade-out-down-big {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
  .animated.fade-out-left, .in-view.fade-out-left {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
  .animated.fade-out-left-big, .in-view.fade-out-left-big {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
  .animated.fade-out-right, .in-view.fade-out-right {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
  .animated.fade-out-right-big, .in-view.fade-out-right-big {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
  .animated.fade-out-up, .in-view.fade-out-up {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
  .animated.fade-out-up-big, .in-view.fade-out-up-big {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig; }

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }
  .animated.flash, .in-view.flash {
    -webkit-animation-name: flash;
    animation-name: flash; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -ms-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -ms-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -ms-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -ms-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -ms-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -ms-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -ms-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -ms-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -ms-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -ms-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
  .animated.flip, .in-view.flip {
    -webkit-animation-name: flip;
    animation-name: flip;
    -webkit-backface-visibility: visible;
    backface-visibility: visible; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); } }
  .animated.flip-in-x, .in-view.flip-in-x {
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
    -webkit-backface-visibility: visible;
    backface-visibility: visible; }

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); } }
  .animated.flip-in-y, .in-view.flip-in-y {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-backface-visibility: visible;
    backface-visibility: visible; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
  .animated.flip-out-x, .in-view.flip-out-x {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible;
    backface-visibility: visible; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
  .animated.flip-out-y, .in-view.flip-out-y {
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-backface-visibility: visible;
    backface-visibility: visible; }

@-webkit-keyframes headshake {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    -ms-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    -ms-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    -ms-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    -ms-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headshake {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    -ms-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    -ms-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    -ms-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    -ms-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
  .animated.headshake, .in-view.headshake {
    -webkit-animation-name: headshake;
    animation-name: headshake;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
  .animated.heart-beat, .in-view.heart-beat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -ms-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);
    -ms-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -ms-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);
    -ms-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
  .animated.hinge, .in-view.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge; }

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    -ms-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom; }
  50% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  70% {
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    -ms-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom; }
  50% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  70% {
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
  .animated.jack-in-the-box, .in-view.jack-in-the-box {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox; }

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    -ms-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    -ms-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    -ms-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    -ms-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    -ms-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    -ms-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    -ms-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    -ms-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    -ms-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    -ms-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    -ms-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    -ms-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    -ms-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    -ms-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
  .animated.jello, .in-view.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    transform: skewX(-5deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    transform: skewX(-5deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.lightspeed-in, .in-view.lightspeed-in {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
  .animated.lightspeed-out, .in-view.lightspeed-out {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
  .animated.pulse, .in-view.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse; }

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.roll-in, .in-view.roll-in {
    -webkit-animation-name: rollIn;
    animation-name: rollIn; }

@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
  .animated.roll-out, .in-view.roll-out {
    -webkit-animation-name: rollOut;
    animation-name: rollOut; }

@-webkit-keyframes rotateClockwise {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotateClockwise {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes rotateCounterClockwise {
  from {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); }
  to {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }

@keyframes rotateCounterClockwise {
  from {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); }
  to {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }
  .animated.rotate-right, .in-view.rotate-right {
    -webkit-animation-name: rotateClockwise;
    animation-name: rotateClockwise; }
  .animated.rotate-left, .in-view.rotate-left {
    -webkit-animation-name: rotateCounterClockwise;
    animation-name: rotateCounterClockwise; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
  .animated.rotate-in, .in-view.rotate-in {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
  .animated.rotate-in-down-left, .in-view.rotate-in-down-left {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
  .animated.rotate-in-down-right, .in-view.rotate-in-down-right {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
  .animated.rotate-in-up-left, .in-view.rotate-in-up-left {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    -ms-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    -ms-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
  .animated.rotate-in-up-right, .in-view.rotate-in-up-right {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    -ms-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    -ms-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
  .animated.rotate-out, .in-view.rotate-out {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
  .animated.rotate-out-down-left, .in-view.rotate-out-down-left {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
  .animated.rotate-out-down-right, .in-view.rotate-out-down-right {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
  .animated.rotate-out-up-left, .in-view.rotate-out-up-left {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }
  .animated.rotate-out-up-right, .in-view.rotate-out-up-right {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
  .animated.rubberband, .in-view.rubberband {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand; }

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
  .animated.shake, .in-view.shake {
    -webkit-animation-name: shake;
    animation-name: shake; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.slide-in-down, .in-view.slide-in-down {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.slide-in-left, .in-view.slide-in-left {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.slide-in-right, .in-view.slide-in-right {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.slide-in-up, .in-view.slide-in-up {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
  .animated.slide-out-down, .in-view.slide-out-down {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
  .animated.slide-out-left, .in-view.slide-out-left {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
  .animated.slide-out-right, .in-view.slide-out-right {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
  .animated.slide-out-up, .in-view.slide-out-up {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
  .animated.swing, .in-view.swing {
    -webkit-animation-name: swing;
    animation-name: swing;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
  .animated.tada, .in-view.tada {
    -webkit-animation-name: tada;
    animation-name: tada; }

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
  .animated.wobble, .in-view.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
  .animated.zoom-in, .in-view.zoom-in {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-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);
    -ms-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 {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-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);
    -ms-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); } }
  .animated.zoom-in-down, .in-view.zoom-in-down {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-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);
    -ms-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 {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-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);
    -ms-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); } }
  .animated.zoom-in-left, .in-view.zoom-in-left {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-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);
    -ms-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 {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-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);
    -ms-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); } }
  .animated.zoom-in-right, .in-view.zoom-in-right {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -ms-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);
    -ms-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 {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -ms-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);
    -ms-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); } }
  .animated.zoom-in-up, .in-view.zoom-in-up {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
  .animated.zoom-out, .in-view.zoom-out {
    -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);
    -ms-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);
    -ms-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;
    -ms-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);
    -ms-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);
    -ms-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;
    -ms-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); } }
  .animated.zoom-out-down, .in-view.zoom-out-down {
    -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);
    -ms-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);
    -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-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);
    -ms-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);
    -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center; } }
  .animated.zoom-out-left, .in-view.zoom-out-left {
    -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);
    -ms-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);
    -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-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);
    -ms-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);
    -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center; } }
  .animated.zoom-out-right, .in-view.zoom-out-right {
    -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);
    -ms-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);
    -ms-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;
    -ms-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);
    -ms-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);
    -ms-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;
    -ms-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); } }
  .animated.zoom-out-up, .in-view.zoom-out-up {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp; }

@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset;
    animation: unset;
    transition: none; } }

/*  --------------------------------------------------------------------------  *\

    EFFECTS LIBRARY

    This library can be used to add simple interactive effects to components found
    throughout the Component Library.

    These are meant to show what we can do, and be a solid starting point. They may
    require some additional work to get things to work completely as expected.
    
    @import '_effects';

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    FEEDS AND DETAIL COMPONENTS

    Each interactive component should have it's own file, along with the base file
    for each interactive component, we should have alteration files for each version.

    // FULL FEED LISTS
    @import 'feeds/_basic';
    @import 'feeds/_profile';
    @import 'feeds/_tile';
    // LATEST FEED
    @import '_latest';
    // FEATURED FEED
    @import 'featured/_flex';
    @import 'featured/_grid';
    @import 'featured/_grid-offset';
    // FEATURED ITEM


\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    FEED - TILES

\*  --------------------------------------------------------------------------  */
.category-section {
  padding-top: 0; }
  .category-section .container {
    position: relative; }
  .category-section .sort {
    text-align: center;
    width: 100%; }
    @media (min-width: 768px) {
      .category-section .sort {
        position: relative;
        top: -3.75rem;
        text-align: right; } }
    .category-section .sort label {
      margin: 0 0.5rem 0 0; }
    .category-section .sort select {
      background: none;
      border: none;
      font-size: 1rem;
      font-weight: bold;
      color: #5a575d;
      appearance: none;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAALpElEQVR4Xu3dPY7lVxGG8TIJqQlZgRcApEhICIgw+yBkGYRshBBM4AgJ2ABrcGRBZDJ0x9OmZ+jue8/3+Z/6TTrnq56q95nb3SP1J+EPAgikJfBJ2soVjgACQQCGAIHEBAggcfOVjgABmAEEEhMggMTNVzoCBGAGEEhMgAASN1/pCBCAGUAgMQECSNx8pSNAAGYAgcQECCBx85WOAAGYAQQSEyCAxM1XOgIEYAYQSEyAABI3X+kIEIAZQCAxAQJI3HylI0AAZgCBxAQIIHHzlY4AAZgBBBITIIDEzVc6AgRgBhBITIAAEjdf6QgQgBlAIDEBAkjcfKUjQABmAIHEBAggcfOVjgABmAEEEhMggMTNVzoCBGAGEEhMgAASN1/pCBCAGUAgMQECSNx8pSNAAGYAgcQECCBx85WOAAGYAQQSEyCAxM1XOgIEYAYQSEyAABI3X+kIEIAZQCAxAQJI3HylI0AAZgCBxAQIIHHzlY4AAZgBBBITIIDEzVc6AgRgBhBITIAAEjdf6QgQgBlAIDEBAkjcfKUjQABmAIHEBAggcfOVjgABmAEEEhMggMTNVzoCBGAGEEhMgAASN1/pCBCAGUAgMQECSNx8pSNAAGYAgcQECCBx85WOAAGYAQQSEyCAxM1XOgIEYAYQSEyAABI3X+kIEIAZQCAxAQJI3HylI0AAZgCBxAQIIHHzlY4AAZgBBBITIIDEzVc6AgRgBhBITIAAEjdf6QgQgBlAIDEBAkjcfKUjQABmAIHEBAggcfOVjgABmAEEEhMggMTNVzoCBGAGEEhMgAASN1/pCBCAGUAgMQECSNx8pSNAAGYAgcQEdhbADyLiDxHxu4j4KnGPlH5dAj+MiN9HxG8j4l87lrGrAG7h/0tE/Cgi/hkRPyOBHcfHm94gcAv/lxHxWUT8IyJ+saMEdhTA8/A/8SUBWbsSgefhf3r3lhLYTQAvhZ8ErjT63vpS+LeVwE4CuIX/i4j48Rsz5JOAgO1M4K3wP7377xHxy12+HNhFAI+E3yeBnUff2x4J/3YS2EEAJeEnAUHbkUBJ+LeSwGoBfPr+u/1vfex/reG+HNgxCvneVBP+bSSwUgAt4fdJIF/Qdqy4JfxP9fwtIn616nsCqwTQI/wksGMk8rypR/iXS2CFAHqGnwTyBG6nSnuGf6kEZgtgRPhJYKdonP+WEeF/LoHbjwj/PQvjTAHcwn/7Of9PBhbnG4MD4To6RoZ/iQRmCWBG+H0SkNCRBGaEf7oEZghgZvhJYGQE8p49M/xTJTBDAD99/9H/+5Pnx5cDk4Efet2K8N9QfhMRP4+Iv47kOkMAt/fffs75x4gggZHddHZvAivD//n7fzh71/TBebMEQAJD2+jwAQSOD/+N2UwBkMCAKXXkEAIpwr9CACQwZF4d2pFAmvCvEgAJdJxWR3UlkCr8KwVAAl3n1mEdCKQL/2oBkECHqXVEFwIpw7+DAEigy/w6pIFA2vDvIgASaJheW5sIpA7/TgIggaY5trmCQPrw7yYAEqiYYluqCAj/e2yz/yPQI93y34YfoWRNLQHhf0ZuRwH4JFA72vbdIyD8HxHaVQAkcG+U/X0pAeF/gdjOAiCB0hG3/jUCwv8Kmd0FQAJC3UpA+N8geAUBkEBrBPLuF/47vb+KAEggb4hrKxf+B8hdSQAk8EBDLXlHQPgfHISrCYAEHmxs4mXCX9D8KwqABAoanGyp8Bc2/KoCIIHCRidYLvwVTb6yAEigouGHbhH+ysZeXQAkUNn4g7YJf0MzTxAACTQMwMW3Cn9jA08RAAk0DsIFtwt/h6adJAAS6DAQFzlC+Ds16jQBkECnwdj4GOHv2JwTBUACHQdks6OEv3NDThUACXQelA2OE/4BTThZACQwYGAWHSn8g8CfLgASGDQ4E48V/oGwMwiABAYO0OCjhX8w4CwCIIHBgzTgeOEfAPXjIzMJgAQmDFSnK4S/E8h7x2QTAAncm4j1fy/8E3uQUQAkMHHACq8S/kJgrcuzCoAEWien/37h78/07omZBUACd8dj2gLhn4b6w4uyC4AEFg3es2uFf2EPCOBb+H4h6ZohFP413L+7lQD+1wASmDuMwj+X94u3EcCHWEhgzlAK/xzOd28hgP9HRAJ3x6ZpgfA34eu7mQBe5kkCfefs6TThH8O1+lQCeB0dCVSP1Ysbhb8vzy6nEcDbGEmgy5j5XX19MPY/hQDuMyWB+4zeWuFf/jZ+Q3cTwGN4SeAxTh+vEv46btN2EcDjqEngcVa3lcJfxmvJagIow04Cj/ES/sc4LV9FAOUtIIG3mQl/+Uwt20EAdehJ4GVuwl83T8t2EUA9ehL4kJ3w18/Ssp0E0IaeBL7lJ/xtc7RsNwG0o88uAeFvn6FlJxBAH/RZJSD8feZn2SkE0A99NgkIf7/ZWXYSAfRFn0UCwt93bpadRgD90Z8uAeHvPzPLTiSAMehPlYDwj5mXZacSwDj0p0lA+MfNyrKTCWAs+lMkIPxj52TZ6QQwHv3VJSD842dk2Q0EMAf9VSUg/HPmY9ktBDAP/dUkIPzzZmPZTQQwF/1VJCD8c+di2W0EMB/97hIQ/vkzsexGAliDflcJCP+aeVh2KwEsQ7/dLyQV/nWzsOxmAliG/t3Fu3wSEP61c7DsdgJYhv67i1dL4HsR8WVEfDYZxTcR8XlEfDH5Xtc9I0AAe4zDKgl8HRG3Gfh0Mgbhnwz8tesIYJNGLPxyYDYB4Z9N/I37CGCjZiSQgPDvNW/vPv75sxeBVV8OjKYg/KMJV5xPABXQJmw5TQLCP2Foaq4ggBpqc/acIgHhnzMvVbcQQBW2aZuuLgHhnzYqdRcRQB23mbuuKgHhnzkllXcRQCW4yduuJgHhnzwgtdcRQC25+fuuIgHhnz8b1TcSQDW6JRt3l4DwLxmL+ksJoJ7dqp27SkD4V01Ew70E0ABv4dbdJCD8C4eh5WoCaKG3du8uEhD+tXPQdDsBNOFbvnm1BIR/+Qi0PYAA2vjtsHuVBIR/h+43voEAGgFusn22BIR/k8a3PoMAWgnus3+WBIR/n543v4QAmhFudcBoCQj/Vu1ufwwBtDPc7YRREhD+3Trd4T0E0AHihkf0loDwb9jkHk8igB4U9zyjlwSEf8/+dnkVAXTBuO0hrRIQ/m1b2+dhBNCH486n1EpA+Hfuaqe3EUAnkJsfUyoB4d+8ob2eRwC9SO5/zqMS+E9E/Npv7Nm/oT1eSAA9KF7njHsSEP7r9LLLSwmgC8ZLHfKaBG7hv/2uvj9fqhqPbSJAAE34Lrv5YwkI/2Vb2fZwAmjjd+XdTxK41fCbiPjTlYvx9joCBFDH7ZRdNwnc/gj/KR0trIMACoFZjsBJBAjgpG6qBYFCAgRQCMxyBE4iQAAndVMtCBQSIIBCYJYjcBIBAjipm2pBoJAAARQCsxyBkwgQwEndVAsChQQIoBCY5QicRIAATuqmWhAoJEAAhcAsR+AkAgRwUjfVgkAhAQIoBGY5AicRIICTuqkWBAoJEEAhMMsROIkAAZzUTbUgUEiAAAqBWY7ASQQI4KRuqgWBQgIEUAjMcgROIkAAJ3VTLQgUEiCAQmCWI3ASAQI4qZtqQaCQAAEUArMcgZMIEMBJ3VQLAoUECKAQmOUInESAAE7qploQKCRAAIXALEfgJAIEcFI31YJAIQECKARmOQInESCAk7qpFgQKCRBAITDLETiJAAGc1E21IFBIgAAKgVmOwEkECOCkbqoFgUICBFAIzHIETiJAACd1Uy0IFBIggEJgliNwEgECOKmbakGgkAABFAKzHIGTCBDASd1UCwKFBAigEJjlCJxEgABO6qZaECgkQACFwCxH4CQCBHBSN9WCQCEBAigEZjkCJxEggJO6qRYECgkQQCEwyxE4iQABnNRNtSBQSIAACoFZjsBJBAjgpG6qBYFCAgRQCMxyBE4iQAAndVMtCBQSIIBCYJYjcBIBAjipm2pBoJDAfwGX1mkfuG7E8AAAAABJRU5ErkJggg==) no-repeat 95% 50%;
      background-size: 15px;
      height: 1.875rem;
      width: 10.9375rem;
      padding: 0.3125rem; }
  .category-section .page-content {
    padding-top: 2.5rem; }
    @media (min-width: 992px) {
      .category-section .page-content {
        padding-top: 3rem; } }

.feed-products {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%; }
  .feed-products::after {
    content: '';
    flex: auto; }
  @media (max-width: 767.9px) {
    .feed-products .card {
      margin: 0.0625rem 0.0625rem 0 0;
      width: calc(1/2*100% - (1 - 1/2)*0.0625rem); }
      .feed-products .card:nth-child(2n) {
        margin-right: 0; }
      .feed-products .card:nth-child(-n+2) {
        margin-top: 0; } }
  @media (min-width: 768px) and (max-width: 991.9px) {
    .feed-products .card {
      margin: 0.0625rem 0.0625rem 0 0;
      width: calc(1/3*100% - (1 - 1/3)*0.0625rem); }
      .feed-products .card:nth-child(3n) {
        margin-right: 0; }
      .feed-products .card:nth-child(-n+3) {
        margin-top: 0; } }
  @media (min-width: 992px) {
    .feed-products .card {
      width: 33.334% !important; } }

/*  --------------------------------------------------------------------------  *\

    FEED - BASIC

\*  --------------------------------------------------------------------------  */
.f-basic > article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  flex-flow: row nowrap;
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  width: 100%;
  border-bottom: 0.0625rem solid #ef9662; }
  @media (min-width: 768px) {
    .f-basic > article {
      margin: 0 0 1.25rem;
      padding: 0 0 1.25rem; } }
  @media (min-width: 992px) {
    .f-basic > article {
      margin: 0 0 1.5rem;
      padding: 0 0 1.5rem; } }
  .f-basic > article > a {
    display: block;
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    order: 0;
    width: calc(37.5% - 1rem);
    margin: 0 2rem 0 0; }
    .f-basic > article > a img {
      display: block;
      width: 100%;
      height: auto; }
  .f-basic > article > div {
    -webkit-box-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    order: 0;
    width: 100%; }

.f-basic h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  text-transform: none;
  margin: 0 0 0.25rem; }
  @media (min-width: 768px) {
    .f-basic h3 {
      font-size: 1.5rem; } }
  .f-basic h3 a {
    color: #eab444;
    text-decoration: none; }
    .f-basic h3 a:hover, .f-basic h3 a:focus {
      color: #5a575d;
      text-decoration: underline; }

.f-basic .byline {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: normal; }
  @media (min-width: 768px) {
    .f-basic .byline {
      font-size: 1rem; } }
  .f-basic .byline span {
    margin: 0 0.5rem; }

.f-basic .tags {
  margin: 0 0 0.5rem; }
  .f-basic .tags a {
    color: #eacb86; }
    .f-basic .tags a:hover, .f-basic .tags a:focus {
      color: #5a575d;
      text-decoration: underline; }

.f-basic .summary {
  margin: 0; }
  .f-basic .summary a {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    color: #eacb86;
    text-decoration: none; }
    .f-basic .summary a svg {
      fill: currentColor;
      width: 1.125rem;
      height: 1.125rem;
      transition: all .25s linear; }
    .f-basic .summary a:hover, .f-basic .summary a:focus {
      color: #eacb86;
      text-decoration: underline; }
      .f-basic .summary a:hover svg, .f-basic .summary a:focus svg {
        transform: translate(0.3125rem, 0); }

/*  --------------------------------------------------------------------------  *\

    FEED - MENU

\*  --------------------------------------------------------------------------  */
.menu {
  background: url("../img/backgrounds/menu-logo-print.jpg") no-repeat fixed 50% 45%/66.667%;
  position: relative; }
  .menu:before {
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: ""; }
  .menu .container {
    position: relative;
    z-index: 100; }
    .menu .container .print {
      display: none; }
      @media (min-width: 768px) {
        .menu .container .print {
          display: inline-flex;
          position: absolute;
          top: 1.1875rem;
          right: 0;
          -webkit-transform: translate(0%, -50%);
          -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%); } }
    .menu .container .back-to-top {
      position: relative;
      position: -webkit-sticky;
      position: sticky;
      -webkit-transform: translate(110%, 0);
      -ms-transform: translate(110%, 0);
      transform: translate(110%, 0);
      width: 5.625rem;
      text-align: center;
      display: block; }
      @supports (position: -webkit-sticky) {
        .menu .container .back-to-top {
          bottom: 1.875rem;
          left: 100%; } }
      @supports (position: sticky) {
        .menu .container .back-to-top {
          bottom: 1.875rem;
          left: 100%; } }
      .menu .container .back-to-top svg {
        margin: 0 auto 1rem;
        display: block;
        width: 2.8125rem;
        height: 2.8125rem; }
  .menu h2, .menu h3 {
    text-align: center; }
  .menu h3 {
    margin: 2.5rem 0;
    padding: 2.5rem 0 0;
    border-top: 0.0625rem solid #ef9662; }
  .menu ul li {
    padding: 0; }
    .menu ul li:before {
      display: none; }
  @media (min-width: 768px) {
    .menu ul {
      -webkit-column-count: 2;
      -ms-column-count: 2;
      column-count: 2;
      -webkit-column-gap: 1.875rem;
      -ms-column-gap: 1.875rem;
      column-gap: 1.875rem; }
      .menu ul li {
        display: inline-block;
        width: 100%;
        margin: 0.9375rem 0; } }
  .menu h4 {
    color: #eacb86;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 0.5rem; }
  .menu .summary {
    line-height: 1.3125;
    margin: -0.25rem 0 0.5rem;
    color: #ef9662; }
    .menu .summary :last-child {
      margin: 0; }
  .menu .price {
    color: #eab444;
    margin: 0; }
  @media print {
    .menu {
      background: url("../img/backgrounds/menu-logo-print.jpg") repeat-y 0 0/contain;
      padding: 0 !important;
      margin: 0 !important; }
      .menu .container {
        padding: 0;
        background: none; }
      .menu h2 {
        display: none; }
      .menu h3 {
        font-size: 14pt;
        line-height: 1.25;
        margin: 0 0 .125in;
        padding: 0;
        border: none; }
        .menu h3 ~ h3 {
          margin: .125in 0;
          padding: .25in 0 0;
          border-top: 0.5pt solid #ef9662; }
      .menu h4 {
        font-size: 10pt;
        line-height: 1.25;
        margin: 0 0 .0625in; }
      .menu p {
        font-size: 8pt; }
        .menu p:last-child {
          margin: 0; }
      .menu .summary, .menu .summary p {
        font-size: 8pt;
        line-height: 1.5; }
      .menu ul {
        -webkit-column-count: 2;
        -ms-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 1.875rem;
        -ms-column-gap: 1.875rem;
        column-gap: 1.875rem;
        margin: 0; }
        .menu ul li {
          display: inline-block;
          width: 100%;
          margin: .125in 0; } }

.spicy {
  position: relative; }
  .spicy svg {
    position: absolute;
    top: 0.875rem;
    left: 0;
    -webkit-transform: translate(-133%, -50%);
    -ms-transform: translate(-133%, -50%);
    transform: translate(-133%, -50%);
    width: 1.0625rem;
    height: 1.0625rem; }

/* CSS Document */
.feed-carousel-featured.slick-initialized {
  opacity: 1; }

.feed-carousel-featured {
  opacity: 0;
  transition: opacity .3s ease-out;
  overflow: hidden;
  position: relative;
  margin: 0 0; }
  .feed-carousel-featured .slick-list {
    overflow: visible;
    width: 100%; }
    @media (min-width: 768px) {
      .feed-carousel-featured .slick-list {
        overflow: hidden;
        width: calc(100% + 32px) !important; } }
  @media (min-width: 768px) {
    .feed-carousel-featured {
      overflow: visible; } }
  .feed-carousel-featured .card {
    margin: 0 1rem; }
  .feed-carousel-featured .slick-arrow {
    position: absolute;
    top: 0;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    top: -1.5rem; }
  .feed-carousel-featured .slick-prev {
    right: 3rem; }
  .feed-carousel-featured .slick-next {
    right: 0; }
  .feed-carousel-featured .slick-dots {
    margin-top: 2.5rem; }

.product .ss-recs .slick-prev {
  right: 4rem;
  margin: 0; }

.product .ss-recs .slick-next {
  right: 1rem;
  margin: 0; }

[searchspring-personalized-recommend] .ss-recommendations {
  margin: 0 !important; }

#searchspring-sidebar .cat-filters .ss-facets .ss-facet-container {
  padding-bottom: 0; }

#searchspring-sidebar .cat-filters .accordion {
  border-bottom: 0; }
  #searchspring-sidebar .cat-filters .accordion dt {
    border-top: 1px solid #ef9662; }
    #searchspring-sidebar .cat-filters .accordion dt button {
      font-size: 0.875rem !important;
      text-transform: uppercase;
      font-weight: normal;
      letter-spacing: 0.08em;
      padding-top: 1rem !important;
      padding-bottom: 1rem !important; }
      #searchspring-sidebar .cat-filters .accordion dt button::before {
        background: url(../img/dropdown-caret.png) no-repeat 80% 50%/10px !important;
        height: 12px !important; }
      #searchspring-sidebar .cat-filters .accordion dt button::after {
        background: none !important; }
  #searchspring-sidebar .cat-filters .accordion dt:nth-child(1) {
    border: 0; }
  #searchspring-sidebar .cat-filters .accordion dd {
    padding-bottom: 1rem; }
    #searchspring-sidebar .cat-filters .accordion dd ul li button {
      padding-left: 1.875rem;
      color: #5a575d;
      font-weight: 400;
      font-size: 14px;
      line-height: 21px; }
      #searchspring-sidebar .cat-filters .accordion dd ul li button::before {
        top: 3px; }
      #searchspring-sidebar .cat-filters .accordion dd ul li button:hover::before {
        background-color: #f6f6f6;
        top: 3px; }
      #searchspring-sidebar .cat-filters .accordion dd ul li button:hover:active::before {
        background-color: #e3e3e3; }
  #searchspring-sidebar .cat-filters .accordion .ss-expanded dt button::before {
    transform: translate(-100%, -50%) rotate(180deg); }

#searchspring-sidebar .cat-filters .ss-border-top {
  border-top: 1px solid #e3e3e3 !important; }

#searchspring-slideout_container.ss-slideout_show {
  transition: all 0.25s; }

.ss-targeted button.ss-slideout-button {
  background-color: #eab444;
  color: #5a575d; }
  .ss-targeted button.ss-slideout-button:hover, .ss-targeted button.ss-slideout-button:active {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), #EAB444; }

/*  --------------------------------------------------------------------------  *\

    FEEDS AND DETAIL COMPONENTS - COMPARISONS


\*  --------------------------------------------------------------------------  */
.compare-actions {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  width: 100%;
  padding: 0.5rem; }
  .compare-actions .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap; }
    @media (min-width: 992px) {
      .compare-actions .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: row nowrap; } }
  .compare-actions .comparison-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
    width: 100%;
    max-width: 500px;
    margin: 10px 0 20px; }
    @media (min-width: 576px) {
      .compare-actions .comparison-list {
        margin: 0; } }
    @media (min-width: 992px) {
      .compare-actions .comparison-list {
        margin: 0 2rem 0 0;
        width: 58.333%; } }
    .compare-actions .comparison-list li {
      position: relative;
      width: calc(25% - 1rem);
      padding: calc(25% - 1rem) 0 0;
      margin: 0 0.5rem;
      border: 0.0625rem solid #eab444; }
      .compare-actions .comparison-list li:before {
        display: none; }
      .compare-actions .comparison-list li img {
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      .compare-actions .comparison-list li p {
        display: none; }
        @media (min-width: 576px) {
          .compare-actions .comparison-list li p {
            display: block;
            display: -webkit-box !important;
            -webkit-box-orient: vertical;
            /* autoprefixer: off */
            overflow: hidden;
            -webkit-line-clamp: 2;
            position: absolute;
            z-index: 10;
            left: 0;
            bottom: 0;
            margin: 0.5rem;
            background: rgba(255, 255, 255, 0.5);
            color: #5a575d;
            font-size: 0.75rem;
            line-height: 1.4em;
            font-weight: bold; } }
      .compare-actions .comparison-list li .remove {
        position: absolute;
        top: 0;
        right: 5px;
        z-index: 20; }
      .compare-actions .comparison-list li:empty {
        border: 0.125rem dashed #e3e3e3; }
        .compare-actions .comparison-list li:empty:before, .compare-actions .comparison-list li:empty:after {
          display: block;
          background: #e3e3e3;
          position: absolute;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          width: 2rem;
          height: 0.5rem;
          border-radius: 0; }
        .compare-actions .comparison-list li:empty:after {
          content: "";
          transform: translate(-50%, -50%) rotate(90deg); }
  .compare-actions .button-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center; }
    @media (min-width: 576px) {
      .compare-actions .button-container [class*="btn-"] {
        width: calc(48% - 0.5rem); } }
  @media (min-width: 768px) {
    .compare-actions.js-show {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: stretch;
      flex-flow: row nowrap; } }

/*  --------------------------------------------------------------------------  *\

    DETAILS
    
    @import 'case-study/base';

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL

\*  --------------------------------------------------------------------------  */
.det-product {
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - LAYOUT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - BREADCRUMBS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - TITLE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - INFO

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - IMAGE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - THUMBNAILS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - ADD ONS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - PRICE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - BULK PRICING

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - HELP

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - ACCORDION

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - AVAILABILITY

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - STICKY INFO

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - DESCRIPTION

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAILS - REVIEWS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAILS - REVIEWS - REVIEW

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAILS - REVIEWS - FORM

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAILS - REVIEWS - RATING

\*  --------------------------------------------------------------------------  */ }
  .det-product .overview {
    padding: 1.25rem 0 2rem; }
    @media (min-width: 768px) {
      .det-product .overview {
        padding: 1rem 0 4.5rem; } }
  .det-product .product-view .title {
    margin: 0 0 0.5rem; }
  .det-product .product-view .gallery-wrap {
    margin: 0 0 1.25rem;
    min-height: 16.25rem;
    position: relative; }
    @media only screen and (min-width: 410px) {
      .det-product .product-view .gallery-wrap {
        margin: 0 0 2rem; }
        .det-product .product-view .gallery-wrap .alt-container {
          bottom: -3.125rem !important; } }
    .det-product .product-view .gallery-wrap .badge-product {
      position: absolute;
      z-index: 100;
      top: 20%;
      right: 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 3.75rem;
      width: 3.75rem; }
      @media (min-width: 768px) {
        .det-product .product-view .gallery-wrap .badge-product {
          top: 0.3125rem;
          right: 1.3125rem; } }
    @media (max-width: 767.9px) {
      .det-product .product-view .gallery-wrap .gallery {
        margin-top: 1.75rem; }
        .det-product .product-view .gallery-wrap .gallery .alt-container {
          position: absolute;
          bottom: -2.5rem; } }
    .det-product .product-view .gallery-wrap .gallery .alt-container {
      display: grid;
      grid-template-columns: 0.875rem auto;
      gap: 0.5rem;
      color: #5a575d;
      font-size: 0.625rem;
      line-height: 0.75rem;
      font-weight: 400;
      font-style: italic;
      padding: 0;
      margin: 0 0 0.5rem; }
      @media (min-width: 768px) {
        .det-product .product-view .gallery-wrap .gallery .alt-container {
          font-size: 0.75rem;
          line-height: 1.125rem;
          margin: 0 0 1.4375rem;
          grid-template-columns: 1rem auto; } }
      .det-product .product-view .gallery-wrap .gallery .alt-container svg {
        height: 0.68rem;
        width: 0.82rem; }
        @media (min-width: 768px) {
          .det-product .product-view .gallery-wrap .gallery .alt-container svg {
            height: 0.85rem;
            width: 1.025rem; } }
        .det-product .product-view .gallery-wrap .gallery .alt-container svg path {
          fill: #eab444; }
  @media (max-width: 767.9px) {
    .det-product .product-view .details-wrap {
      padding-top: 0; } }
  .det-product .product-view .details-wrap .samples-tag {
    position: relative;
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    background-color: #f6f6f6;
    font-family: 'Verdana';
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5; }
    .det-product .product-view .details-wrap .samples-tag .tooltip {
      transition-delay: 0s; }
    .det-product .product-view .details-wrap .samples-tag:hover, .det-product .product-view .details-wrap .samples-tag:focus {
      cursor: pointer; }
      .det-product .product-view .details-wrap .samples-tag:hover .tooltip, .det-product .product-view .details-wrap .samples-tag:focus .tooltip {
        opacity: 1;
        pointer-events: all;
        display: block; }
  @media (min-width: 768px) {
    .det-product .product-view {
      margin: 0 -1rem; }
      .det-product .product-view:before, .det-product .product-view:after {
        display: block;
        height: 0;
        width: 100%;
        content: "";
        clear: both; }
      .det-product .product-view .details-wrap,
      .det-product .product-view .title {
        float: right;
        width: 50%;
        padding: 0 1rem;
        margin: 0 0 0.5rem; }
      .det-product .product-view .gallery-wrap {
        float: left;
        width: 50%;
        padding: 0 1rem;
        position: sticky;
        top: 4.0625rem;
        z-index: 0;
        min-height: 27.5rem; }
      .det-product .product-view .details-wrap {
        padding: 0 1rem; }
        .det-product .product-view .details-wrap .samples-tag {
          max-width: 275px;
          width: auto; } }
  @media (min-width: 992px) {
    .det-product .product-view .gallery-wrap {
      width: 54.1667%;
      min-height: 40rem; }
    .det-product .product-view .details-wrap,
    .det-product .product-view .title {
      width: 41.667%; }
    .det-product .product-view .gallery-wrap {
      top: 9.6875rem; } }
  .det-product .multiple-payments {
    margin: 1.5rem 0 0; }
    .det-product .multiple-payments > div {
      display: flex;
      flex-direction: column;
      background: #f6f6f6;
      width: 100%;
      padding: 1rem; }
      @media (min-width: 768px) {
        .det-product .multiple-payments > div {
          flex-direction: row;
          align-items: center;
          padding: 1rem 1.5rem; }
          .det-product .multiple-payments > div > div:first-child {
            padding: 0 1rem 0 0; }
          .det-product .multiple-payments > div > div:last-child {
            padding: 0 0 0 1rem;
            border-left: 1px solid #E4E4E4; } }
      .det-product .multiple-payments > div p {
        color: #5a575d;
        font-weight: 400;
        font-size: 0.75rem;
        line-height: 150%;
        margin: 0; }
        @media (min-width: 768px) {
          .det-product .multiple-payments > div p {
            line-height: 140%; } }
        .det-product .multiple-payments > div p a {
          text-decoration: none;
          font-weight: bold; }
          .det-product .multiple-payments > div p a:hover, .det-product .multiple-payments > div p a:focus {
            text-decoration: underline; }
      .det-product .multiple-payments > div.mp-ppc {
        margin: 0 0 1rem; }
        .det-product .multiple-payments > div.mp-ppc svg {
          height: auto;
          width: 3.4375rem;
          display: block;
          margin: 0 0 0.5rem; }
          @media (min-width: 768px) {
            .det-product .multiple-payments > div.mp-ppc svg {
              margin: 0;
              width: 5rem; } }
      .det-product .multiple-payments > div.mp-ap img {
        height: auto;
        width: 5rem;
        display: block;
        margin: 0 0 0.5rem; }
        @media (min-width: 768px) {
          .det-product .multiple-payments > div.mp-ap img {
            margin: 0; } }
  .det-product .samples-tag {
    position: relative;
    padding: 0.75rem 1rem;
    background-color: #f6f6f6;
    max-width: 275px;
    width: auto;
    font-family: 'Verdana';
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5; }
    .det-product .samples-tag .tooltip {
      transition-delay: 0s; }
    .det-product .samples-tag:hover, .det-product .samples-tag:focus {
      cursor: pointer; }
      .det-product .samples-tag:hover .tooltip, .det-product .samples-tag:focus .tooltip {
        opacity: 1;
        pointer-events: all;
        display: block; }
  .det-product .disable {
    pointer-events: none;
    cursor: not-allowed; }
  .det-product .sku {
    margin: 0 0 0.5rem;
    color: #5a575d;
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em; }
  .det-product h1 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 150%;
    margin: 0 0 0.5rem;
    color: #5a575d; }
    @media (min-width: 992px) {
      .det-product h1 {
        font-size: 1.5rem; } }
  .det-product .ratings {
    font-size: 1rem; }
    .det-product .ratings .stamped-starrating.stamped-badge-starrating {
      margin: 0 0.75rem 0 0 !important; }
    .det-product .ratings .stamped-starrating i {
      width: 1.25rem;
      height: 1.25rem; }
      .det-product .ratings .stamped-starrating i::before {
        font-size: 1.25rem !important; }
    .det-product .ratings .stamped-badge-caption {
      margin: 0 0 0 0.5625rem; }
      .det-product .ratings .stamped-badge-caption:before {
        content: "("; }
      .det-product .ratings .stamped-badge-caption > span:after {
        content: ")"; }
      .det-product .ratings .stamped-badge-caption[data-rating="0"]:before, .det-product .ratings .stamped-badge-caption[data-rating="0,0"]:before, .det-product .ratings .stamped-badge-caption[data-rating="0.0"]:before {
        content: "(This product has no reviews yet)"; }
  .det-product .buttons-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin: 0 0 1rem;
    column-gap: 1rem; }
    @media (min-width: 992px) {
      .det-product .buttons-wrapper {
        align-items: center;
        flex-direction: row; } }
  .det-product .info {
    display: none;
    margin: 0 0 1.5rem;
    font-size: 0.8125rem; }
    @media (min-width: 768px) {
      .det-product .info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-flow: row wrap; } }
    @media (min-width: 992px) {
      .det-product .info {
        font-size: 0.875rem; } }
    .det-product .info strong {
      color: #eacb86;
      font-weight: bold; }
    .det-product .info dt {
      -webkit-box-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: 1.125rem;
      height: 1.125rem;
      margin: 0 0.625rem 0 0; }
    .det-product .info dt ~ dt, .det-product .info dd:nth-of-type(n + 2) {
      margin-top: 0.625rem; }
    .det-product .info svg {
      width: 1.125rem;
      height: 1.125rem;
      fill: #eab444; }
    .det-product .info dd {
      -webkit-box-flex: 0 1 auto;
      -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      width: calc(100% - 1.75rem);
      padding: 0;
      font-size: 0.875rem;
      line-height: 1.35714; }
  .det-product .alert-box.info {
    flex-flow: row nowrap;
    align-items: flex-start; }
    .det-product .alert-box.info svg {
      fill: currentColor;
      width: 1.5rem;
      height: 1.5rem; }
  .det-product figure.product-image {
    display: none;
    overflow: hidden;
    width: 85%;
    border: 0.0625rem solid #fff;
    position: relative;
    margin: 0 0 0.6875rem; }
    @media (min-width: 768px) {
      .det-product figure.product-image {
        display: block;
        width: 100%; } }
    .det-product figure.product-image a {
      position: relative;
      z-index: 0;
      display: block;
      width: 100%;
      height: auto; }
      .det-product figure.product-image a > img {
        width: 100%;
        height: auto; }
    .det-product figure.product-image .easyzoom-flyout {
      position: absolute;
      left: 0;
      top: 0;
      overflow: hidden;
      width: 100%;
      height: 100%; }
      .det-product figure.product-image .easyzoom-flyout img {
        max-width: none;
        width: auto; }
    .det-product figure.product-image .arrow {
      position: absolute;
      z-index: 1000;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      width: 2rem;
      height: 2rem;
      padding: 0.375rem;
      color: #eab444;
      display: none;
      background-image: none !important; }
      .det-product figure.product-image .arrow:hover, .det-product figure.product-image .arrow:focus {
        color: #ef9662; }
      .det-product figure.product-image .arrow svg {
        position: relative;
        width: 100%;
        height: 100%;
        fill: currentColor; }
      .det-product figure.product-image .arrow.prev {
        left: 0; }
      .det-product figure.product-image .arrow.next {
        right: 0; }
    .det-product figure.product-image .zoom {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 1.5rem;
      height: 1.5rem;
      transform: translate(66.67%, -66.67%); }
    .det-product figure.product-image .enhance {
      z-index: 9;
      position: absolute;
      height: 2.0625rem;
      width: 2.0625rem;
      bottom: 1.25rem;
      right: 1.25rem; }
      .det-product figure.product-image .enhance svg path {
        fill: #f6f6f6;
        transition: all .2s; }
      .det-product figure.product-image .enhance:hover svg path, .det-product figure.product-image .enhance:focus svg path {
        fill: #eab444; }
  .det-product .thumbnails .slick-dots {
    margin: 3rem 0 0; }
  @media (min-width: 768px) {
    .det-product .thumbnails.mobile-only {
      display: none; } }
  @media (min-width: 768px) {
    .det-product .thumbnails {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: stretch;
      align-content: stretch;
      flex-flow: row nowrap;
      margin: 0 -0.5rem; }
      .det-product .thumbnails a {
        display: block;
        border: 0.0625rem solid #fff;
        padding: 0.25rem; }
        .det-product .thumbnails a:hover, .det-product .thumbnails a:focus {
          box-shadow: 0 0 0.25rem rgba(234, 180, 68, 0.5); }
        .det-product .thumbnails a.is-active {
          border-color: #e3e3e3;
          box-shadow: none; }
      .det-product .thumbnails .slick-list {
        width: calc(100% - 5rem); }
      .det-product .thumbnails .slick-arrow {
        border-radius: 0;
        height: auto;
        width: 1.5rem;
        margin: 0 0.5rem; }
      .det-product .thumbnails .thumbnail {
        margin: 0 0.5rem;
        max-width: 7.5rem;
        width: 20%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: 1;
        align-items: 1;
        align-content: auto;
        flex-flow: row wrap; } }
  .det-product .add-ons {
    margin: 2.5rem 0 0; }
    .det-product .add-ons li {
      padding: 1.5rem 0;
      border-top: 0.125rem solid #ef9662; }
      .det-product .add-ons li:before {
        display: none; }
    .det-product .add-ons .form-field {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      flex-flow: row nowrap; }
      .det-product .add-ons .form-field figure {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 6.875rem;
        margin: 0 1.5rem 0 0; }
      .det-product .add-ons .form-field div {
        -webkit-box-flex: 0 1 auto;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 100%; }
    .det-product .add-ons h4 {
      font-size: 1rem;
      font-weight: 500;
      margin: 0; }
    .det-product .add-ons .desc {
      font-size: 0.875rem;
      color: #ef9662; }
    .det-product .add-ons label {
      font-size: 0.875rem;
      margin: 1.25rem 0 0; }
      .det-product .add-ons label .buy {
        display: block; }
      .det-product .add-ons label .added {
        display: none;
        color: #eacb86; }
      .det-product .add-ons label .price {
        font-size: 1rem;
        font-weight: 500; }
    .det-product .add-ons input[type="checkbox"] {
      position: absolute;
      width: 1px !important;
      height: 1px;
      padding: 0;
      margin: -1px;
      border: 0;
      overflow: hidden;
      clip: rect(0, 0, 0, 0); }
      .det-product .add-ons input[type="checkbox"] + label {
        display: block;
        position: relative;
        padding: 0 0 0 1.875rem; }
        .det-product .add-ons input[type="checkbox"] + label:before {
          content: "";
          width: 1rem;
          height: 1rem;
          border: 0.0625rem solid #ef9662;
          border-radius: 0.3125rem;
          display: block;
          position: absolute;
          left: 0;
          top: 0.75em;
          -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          transform: translate(0, -50%); }
        .det-product .add-ons input[type="checkbox"] + label:after {
          content: "";
          position: absolute;
          left: 0.625rem;
          top: 0.7em;
          -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
          width: 0.5rem;
          height: 0.25rem;
          border-left: 0.0625rem solid rgba(234, 203, 134, 0);
          border-bottom: 0.0625rem solid rgba(234, 203, 134, 0); }
        .det-product .add-ons input[type="checkbox"] + label:hover:before, .det-product .add-ons input[type="checkbox"] + label:focus:before {
          border-color: #eacb86; }
      .det-product .add-ons input[type="checkbox"]:checked + label .buy {
        display: none; }
      .det-product .add-ons input[type="checkbox"]:checked + label .added {
        display: block; }
      .det-product .add-ons input[type="checkbox"]:checked + label:before, .det-product .add-ons input[type="checkbox"]:checked + label:after {
        border-color: #eacb86; }
  .det-product .price {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #5a575d; }
    .det-product .price .full-price {
      text-decoration: line-through;
      font-weight: normal;
      margin: 0 0.5rem 0 0;
      color: #e3e3e3; }
    .det-product .price.w-total {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-flow: row nowrap;
      padding: 0 0 1.5rem;
      margin: 0 0 1.5rem;
      border-bottom: 0.0625rem solid #bbadaa; }
    .det-product .price small {
      font-size: 0.8125rem;
      font-weight: 300;
      font-style: italic;
      color: #5a575d;
      text-transform: capitalize; }
    @media (min-width: 768px) {
      .det-product .price {
        font-size: 1.125rem;
        margin: 0 0 1.25rem; } }
    @media (min-width: 992px) {
      .det-product .price {
        font-size: 1.25rem;
        margin: 0 0 1.5rem; } }
  .det-product .bulk-pricing {
    font-size: 0.875rem;
    line-height: 1.28571;
    margin: 0 0 1.5rem; }
    .det-product .bulk-pricing li {
      padding: 0; }
      .det-product .bulk-pricing li:before {
        display: none; }
      .det-product .bulk-pricing li + li {
        margin: 0.5rem 0 0; }
  .det-product .form-product {
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELDSET

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELD ELEMENT

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELDS - OPTS SELECT

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELDS - SWATCH

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELDS - OPTS SELECT

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELDS - FIRE

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - QUANTITY

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - ADD TO CART

\*  --------------------------------------------------------------------------  */ }
    .det-product .form-product .option-group {
      display: block; }
    .det-product .form-product h2 {
      display: flex;
      justify-content: space-between;
      color: #5a575d;
      font-size: 0.875rem;
      line-height: 160%;
      font-weight: 600;
      font-family: 'Work Sans';
      text-transform: capitalize;
      margin: 0 0 1rem;
      text-align: left; }
      .det-product .form-product h2 a {
        text-transform: none;
        font-weight: 600;
        font-size: 0.75rem;
        letter-spacing: 0;
        color: #5a575d; }
        .det-product .form-product h2 a:hover, .det-product .form-product h2 a:focus {
          color: #eab444; }
      .det-product .form-product h2 ~ h2 {
        margin-top: 1.5rem; }
      @media (min-width: 992px) {
        .det-product .form-product h2 {
          font-size: 1rem; } }
    .det-product .form-product .form-field + .form-field {
      margin-top: 1rem; }
    .det-product .form-product .form-field label, .det-product .form-product .form-field p, .det-product .form-product .form-field .label {
      font-size: 0.75rem; }
      .det-product .form-product .form-field label small, .det-product .form-product .form-field p small, .det-product .form-product .form-field .label small {
        font-size: 1em;
        font-weight: 300;
        color: #FF0000; }
    .det-product .form-product .form-field input, .det-product .form-product .form-field select, .det-product .form-product .form-field textarea {
      font-size: 0.875rem;
      border: 0.0625rem solid #e3e3e3;
      width: 100%;
      margin: 0.5rem 0 0;
      padding: 0.5625rem 0.75rem; }
      @media (min-width: 992px) {
        .det-product .form-product .form-field input, .det-product .form-product .form-field select, .det-product .form-product .form-field textarea {
          padding: 0.8125rem 1rem; } }
      .det-product .form-product .form-field input:hover, .det-product .form-product .form-field input:focus, .det-product .form-product .form-field select:hover, .det-product .form-product .form-field select:focus, .det-product .form-product .form-field textarea:hover, .det-product .form-product .form-field textarea:focus {
        border-color: #5a575d; }
    .det-product .form-product .form-field select {
      appearance: none;
      -webkit-appearance: none;
      background: url(../img/dropdown-caret.png) no-repeat 95% 50%/8px; }
      .det-product .form-product .form-field select.width-selector, .det-product .form-product .form-field select.height-selector {
        padding-right: 2.5rem; }
    .det-product .form-product #endcapsShape, .det-product .form-product #jointType, .det-product .form-product #pegCount {
      margin-top: 1rem; }
    .det-product .form-product #endcapsShape .warning {
      margin-top: 1rem;
      border-bottom: 1px solid #D5D7DA;
      margin-bottom: 1.5rem; }
    .det-product .form-product .opts-select label {
      margin-bottom: 0.5rem; }
    @media (min-width: 992px) {
      .det-product .form-product .opts-select {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: center;
        flex-flow: row wrap; }
        .det-product .form-product .opts-select select {
          margin: 0; } }
    .det-product .form-product #availableColors {
      margin-top: 1rem; }
    .det-product .form-product .opts-swatch {
      margin: 0 -0.375rem; }
      .det-product .form-product .opts-swatch .swatch-group {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-content: start;
        row-gap: 0.5rem; }
        @media (min-width: 768px) {
          .det-product .form-product .opts-swatch .swatch-group {
            grid-template-columns: repeat(5, 1fr); } }
        .det-product .form-product .opts-swatch .swatch-group div {
          width: auto; }
        .det-product .form-product .opts-swatch .swatch-group [aria-label="N/A"] {
          display: none; }
      .det-product .form-product .opts-swatch[data-option-set] {
        margin-top: 1rem; }
        .det-product .form-product .opts-swatch[data-option-set]:first-child {
          margin-top: 0; }
      .det-product .form-product .opts-swatch p {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        margin: 0 0.375rem 0.75rem;
        font-weight: 400;
        font-size: 0.75rem;
        line-height: 160%;
        color: #5a575d; }
        @media (min-width: 992px) {
          .det-product .form-product .opts-swatch p {
            font-size: 0.875rem; } }
        .det-product .form-product .opts-swatch p span {
          font-weight: 600;
          color: #eab444; }
      .det-product .form-product .opts-swatch input {
        position: absolute;
        width: 1px !important;
        height: 1px;
        padding: 0;
        margin: -1px;
        border: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0); }
      .det-product .form-product .opts-swatch label {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        align-content: stretch;
        flex-flow: row wrap;
        width: calc(25% - 0.5rem);
        height: auto;
        border: none;
        cursor: pointer;
        box-shadow: 0 0 0 #eab444;
        transition: all .25s linear; }
        .det-product .form-product .opts-swatch label:nth-of-type(n + 5) {
          margin-top: 0.5rem; }
        @media (min-width: 992px) {
          .det-product .form-product .opts-swatch label {
            width: calc(20% - 0.5rem); }
            .det-product .form-product .opts-swatch label:nth-of-type(5) {
              margin-top: 0; } }
        .det-product .form-product .opts-swatch label span {
          display: block;
          padding: 80% 0 0;
          border: 0.125rem solid #fff;
          box-shadow: inset 0 0 0 0.125rem #fff;
          background-position: 50% 50%;
          background-size: cover !important;
          background-repeat: no-repeat;
          min-width: 33.333%;
          max-width: 100%;
          width: 33.333%;
          -webkit-box-flex: 1 1 auto;
          -webkit-flex: 1 1 auto;
          -ms-flex: 1 1 auto;
          flex: 1 1 auto; }
          .det-product .form-product .opts-swatch label span.form-option-image {
            padding: 0; }
            .det-product .form-product .opts-swatch label span.form-option-image > img {
              border: 0.125rem solid #fff; }
          .det-product .form-product .opts-swatch label span.title {
            width: 100%;
            padding: 0;
            margin: 0.25rem 0 0;
            text-align: center;
            font-size: 0.625rem;
            line-height: 1.25; }
        .det-product .form-product .opts-swatch label:hover, .det-product .form-product .opts-swatch label:focus {
          box-shadow: 0 0 0.25rem #eab444; }
        .det-product .form-product .opts-swatch label[aria-label="N/A"] {
          display: none !important; }
      .det-product .form-product .opts-swatch input:checked + .swatch > span:not(.title) {
        border-color: #eab444; }
      .det-product .form-product .opts-swatch input:disabled + .swatch {
        cursor: not-allowed;
        position: relative; }
        .det-product .form-product .opts-swatch input:disabled + .swatch:before {
          content: "";
          height: 0.125rem;
          width: 144%;
          position: absolute;
          z-index: 100;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(-50%, -50%) rotate(-47deg);
          -ms-transform: translate(-50%, -50%) rotate(-47deg);
          transform: translate(-50%, -50%) rotate(-47deg);
          background: #e3e3e3; }
        .det-product .form-product .opts-swatch input:disabled + .swatch:after {
          content: "";
          position: absolute;
          z-index: 100;
          left: 0;
          top: 0;
          width: calc(100% - 0.25rem);
          height: calc(100% - 0.25rem);
          border: 0.125rem solid #e3e3e3; }
        .det-product .form-product .opts-swatch input:disabled + .swatch:hover, .det-product .form-product .opts-swatch input:disabled + .swatch:focus {
          box-shadow: none; }
        .det-product .form-product .opts-swatch input:disabled + .swatch span {
          z-index: 0;
          opacity: 0.667; }
    .det-product .form-product .dimensions {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: flex-end;
      align-content: flex-start;
      flex-flow: row nowrap;
      margin: 0 -0.5rem; }
      .det-product .form-product .dimensions .opts-select {
        margin: 0 0.5rem; }
      .det-product .form-product .dimensions select {
        background: url(../img/test-dimension.png) no-repeat 100% 50%/contain; }
      .det-product .form-product .dimensions > div {
        flex-flow: column nowrap;
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: calc(33.333% - 1rem); }
        .det-product .form-product .dimensions > div label, .det-product .form-product .dimensions > div select {
          width: 100%; }
        .det-product .form-product .dimensions > div label {
          margin: 0 0 0.5rem; }
        .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4),
        .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4) ~ div {
          width: calc(25% - 1rem); }
      @media (max-width: 340px) {
        .det-product .form-product .dimensions {
          flex-flow: row wrap; }
          .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4),
          .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4) ~ div {
            width: calc(50% - 1rem); }
            .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4):nth-child(n + 3),
            .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4) ~ div:nth-child(n + 3) {
              margin-top: 1rem; } }
    .det-product .form-product .form-field.fire,
    .det-product .form-product .form-field.radio {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-flow: row wrap;
      border: none;
      margin-bottom: 1rem; }
      .det-product .form-product .form-field.fire + .form-field,
      .det-product .form-product .form-field.radio + .form-field {
        margin-bottom: 1rem; }
      .det-product .form-product .form-field.fire.disabled,
      .det-product .form-product .form-field.radio.disabled {
        color: #bbadaa;
        pointer-events: none; }
        .det-product .form-product .form-field.fire.disabled .tooltip-trigger.icon-i,
        .det-product .form-product .form-field.radio.disabled .tooltip-trigger.icon-i {
          background: #5a575d; }
        .det-product .form-product .form-field.fire.disabled label:before,
        .det-product .form-product .form-field.radio.disabled label:before {
          border-color: #bbadaa; }
        .det-product .form-product .form-field.fire.disabled input:checked + label:before,
        .det-product .form-product .form-field.radio.disabled input:checked + label:before {
          border-color: #bbadaa;
          background: #bbadaa; }
      .det-product .form-product .form-field.fire .label,
      .det-product .form-product .form-field.radio .label {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        margin: 0 0 0.5rem;
        font-size: 0.875rem;
        font-weight: 600;
        line-height: 160%; }
        .det-product .form-product .form-field.fire .label .tooltip-trigger,
        .det-product .form-product .form-field.radio .label .tooltip-trigger {
          background: #5a575d; }
      .det-product .form-product .form-field.fire label,
      .det-product .form-product .form-field.radio label {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 3.125rem;
        margin: 0 0 0 0.9375rem;
        padding: 0 0 0 1.5rem;
        position: relative; }
        .det-product .form-product .form-field.fire label:first-of-type,
        .det-product .form-product .form-field.radio label:first-of-type {
          margin: 0; }
        .det-product .form-product .form-field.fire label:before,
        .det-product .form-product .form-field.radio label:before {
          content: "";
          position: absolute;
          left: 0;
          top: 50%;
          -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
          width: 0.875rem;
          height: 0.875rem;
          border: 0.0625rem solid #bbadaa;
          border-radius: 100%;
          transition: all .125s linear; }
      .det-product .form-product .form-field.fire input,
      .det-product .form-product .form-field.radio input {
        position: absolute;
        width: 1px !important;
        height: 1px;
        padding: 0;
        margin: -1px;
        border: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0); }
        .det-product .form-product .form-field.fire input:checked + label:before,
        .det-product .form-product .form-field.radio input:checked + label:before {
          border: 0.125rem solid #5a575d;
          width: 0.8125rem;
          height: 0.8125rem;
          background: #5a575d;
          box-shadow: inset 0 0 0 0.1875rem #fff; }
      @media (min-width: 992px) {
        .det-product .form-product .form-field.fire,
        .det-product .form-product .form-field.radio {
          justify-content: space-between;
          flex-flow: row nowrap; }
          .det-product .form-product .form-field.fire .label,
          .det-product .form-product .form-field.radio .label {
            -webkit-box-flex: 1 1 auto;
            -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
            margin: 0; }
          .det-product .form-product .form-field.fire label:first-of-type,
          .det-product .form-product .form-field.radio label:first-of-type {
            margin: 0 0 0 0.9375rem; } }
    .det-product .form-product .quantity {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-flow: row wrap;
      margin: 0 0 1.25rem; }
      @media (min-width: 768px) {
        .det-product .form-product .quantity {
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          flex-flow: row nowrap;
          margin: 0 0 1.5rem; } }
      @media (min-width: 992px) {
        .det-product .form-product .quantity {
          margin: 0 0 2rem; } }
      .det-product .form-product .quantity label {
        font-size: 1rem;
        font-weight: 400;
        margin: 0.875rem 1rem 0 0;
        align-self: flex-start; }
        @media (min-width: 576px) {
          .det-product .form-product .quantity label {
            align-self: center;
            margin: 0 1rem 0 0; } }
      .det-product .form-product .quantity .form-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-flow: column nowrap; }
        @media (min-width: 576px) {
          .det-product .form-product .quantity .form-wrapper {
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-flow: row nowrap; } }
      .det-product .form-product .quantity .form-increment {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        align-content: stretch;
        flex-flow: row nowrap;
        width: 7.5rem; }
        .det-product .form-product .quantity .form-increment button {
          -webkit-box-flex: 0 0 auto;
          -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto;
          width: 2.1875rem;
          border: 0.0625rem solid #e3e3e3;
          background: #fff;
          color: #bbadaa;
          position: relative;
          transition: all 0.25s linear; }
          .det-product .form-product .quantity .form-increment button:before, .det-product .form-product .quantity .form-increment button:after {
            content: "";
            height: 0.125rem;
            width: 0.75rem;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            background: #5a575d;
            transition: all 0.25s linear; }
          .det-product .form-product .quantity .form-increment button:hover, .det-product .form-product .quantity .form-increment button:focus {
            background-color: #5a575d;
            color: #fff; }
            .det-product .form-product .quantity .form-increment button:hover:before, .det-product .form-product .quantity .form-increment button:hover:after, .det-product .form-product .quantity .form-increment button:focus:before, .det-product .form-product .quantity .form-increment button:focus:after {
              background: #fff; }
          .det-product .form-product .quantity .form-increment button:active {
            background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), #5A575D; }
            .det-product .form-product .quantity .form-increment button:active:before, .det-product .form-product .quantity .form-increment button:active:after {
              background: #fff; }
        .det-product .form-product .quantity .form-increment input {
          -webkit-box-flex: 0 1 auto;
          -webkit-flex: 0 1 auto;
          -ms-flex: 0 1 auto;
          flex: 0 1 auto;
          margin: 0;
          width: calc(100% - 4.375rem);
          padding: 0.75rem 0.375rem;
          border-left: none;
          border-right: none;
          text-align: center; }
        .det-product .form-product .quantity .form-increment .inc-minus:after {
          display: none; }
        .det-product .form-product .quantity .form-increment .inc-plus:after {
          transform: translate(-50%, -50%) rotate(90deg); }
      .det-product .form-product .quantity .calculator {
        margin: 1rem 0 0;
        font-size: 0.75rem;
        line-height: 1rem;
        font-weight: 600;
        color: #bbadaa; }
        @media (min-width: 576px) {
          .det-product .form-product .quantity .calculator {
            margin: 0 0 0 1rem; } }
    .det-product .form-product .form-action {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: column;
      row-gap: 1rem; }
      .det-product .form-product .form-action button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: row;
        column-gap: 0.625rem; }
        .det-product .form-product .form-action button svg {
          width: 1.125rem;
          height: 1.125rem; }
      .det-product .form-product .form-action [class*="btn-"] {
        width: 100%;
        height: 2.6875rem;
        font-size: 0.875rem;
        line-height: 1.5rem;
        font-weight: 600;
        margin: 0; }
        .det-product .form-product .form-action [class*="btn-"]:hover {
          color: #fff; }
  .det-product .help {
    background: #bbadaa;
    font-size: 0.75rem;
    line-height: 1.5;
    padding: 0.75rem 1rem;
    margin: 1.5rem 0 0; }
    .det-product .help li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: row nowrap;
      padding: 0; }
      .det-product .help li svg {
        fill: #ef9662;
        width: 1.25rem;
        height: 1.25rem;
        margin: 0 0.5rem 0 0; }
      .det-product .help li:before {
        display: none; }
      .det-product .help li + li {
        margin: 0.75rem 0 0 0;
        padding: 0.75rem 0 0 0;
        border-top: 0.0625rem solid #eab444; }
      .det-product .help li a {
        margin: 0 0 0 0.5rem;
        text-decoration: underline; }
        .det-product .help li a:hover, .det-product .help li a:focus {
          color: #ef9662; }
    @media (min-width: 1425px) {
      .det-product .help ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: row nowrap; }
      .det-product .help li + li {
        margin: 0 0 0 1.25rem;
        padding: 0 0 0 1.3125rem;
        border-top: none; }
        .det-product .help li + li:before {
          display: block;
          height: 1.25rem;
          width: 0.0625rem;
          background: #eab444; } }
  .det-product .accordion.acc-options {
    margin: 0 -1.5rem -1.5rem;
    border-bottom: none;
    background: #fff; }
    .det-product .accordion.acc-options:only-child {
      margin: -1.5rem; }
    .det-product .accordion.acc-options button {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-flow: row wrap;
      padding: 1.0625rem 1.25rem;
      color: #eab444;
      text-transform: none; }
      .det-product .accordion.acc-options button span, .det-product .accordion.acc-options button small {
        font-size: 0.75rem;
        font-weight: normal;
        margin: 0 0 0 0.25rem;
        pointer-events: none; }
      .det-product .accordion.acc-options button span {
        color: #666666; }
        .det-product .accordion.acc-options button span:before {
          content: "- "; }
      .det-product .accordion.acc-options button small.required {
        color: #f0d9a8; }
      .det-product .accordion.acc-options button:hover, .det-product .accordion.acc-options button:focus {
        color: #eab444; }
      @media (min-width: 992px) {
        .det-product .accordion.acc-options button {
          flex-flow: row nowrap; } }
    .det-product .accordion.acc-options dd {
      padding: 0.625rem 1.125rem 1.25rem; }
      @media (min-width: 992px) {
        .det-product .accordion.acc-options dd {
          padding: 1.25rem 1.125rem 1.875rem 8.625rem; } }
    .det-product .accordion.acc-options dt, .det-product .accordion.acc-options dd {
      background: #f9f9f9; }
    .det-product .accordion.acc-options dt {
      position: relative; }
      .det-product .accordion.acc-options dt:first-child {
        border-top: none; }
      .det-product .accordion.acc-options dt.not-required button, .det-product .accordion.acc-options dt.not-required + dd {
        background: #e8e8e8; }
      .det-product .accordion.acc-options dt.open {
        background: #fff; }
        .det-product .accordion.acc-options dt.open + dd {
          background: #fff; }
      .det-product .accordion.acc-options dt img {
        display: none; }
      @media (min-width: 992px) {
        .det-product .accordion.acc-options dt img {
          display: block;
          position: absolute;
          z-index: -1;
          left: 1.25rem;
          top: 1.125rem;
          -webkit-transform: translate(0, 0);
          -ms-transform: translate(0, 0);
          transform: translate(0, 0);
          width: 6.25rem;
          opacity: 0;
          visibility: hidden;
          transition: visibility 0s, opacity .25s linear; } }
    .det-product .accordion.acc-options button[aria-expanded="true"] {
      background: #fff; }
      @media (min-width: 992px) {
        .det-product .accordion.acc-options button[aria-expanded="true"] {
          margin: 0 0 0 7.5rem;
          width: calc(100% - 7.5rem); }
          .det-product .accordion.acc-options button[aria-expanded="true"] + img {
            z-index: 0;
            visibility: visible;
            opacity: 1; } }
    .det-product .accordion.acc-options dt.not-required button[aria-expanded="true"] {
      background: #fff; }
    .det-product .accordion.acc-options dd:not([hidden]) {
      background: #fff !important; }
  .det-product .availability {
    color: #999999; }
    .det-product .availability.oos {
      color: #f0d9a8; }
  .det-product .sticky-info-sentinel {
    height: 1px; }
  .det-product .sticky-info {
    visibility: hidden;
    padding: 0.9375rem 0;
    border-top: 0.0625rem solid #bbadaa;
    border-bottom: 0.0625rem solid #bbadaa;
    background: #fff;
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    z-index: 10001;
    opacity: 0;
    transition: visibility 0s, opacity .15s linear;
    height: 0;
    display: none; }
    @supports (position: -webkit-sticky) {
      .det-product .sticky-info {
        top: 0; } }
    @supports (position: sticky) {
      .det-product .sticky-info {
        top: 0; } }
    @supports (position: sticky) {
      .det-product .sticky-info.js-stuck {
        visibility: visible;
        opacity: 1;
        height: auto;
        display: block; } }
    .det-product .sticky-info .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: row nowrap; }
    .det-product .sticky-info .img-w {
      width: 4.5rem;
      border: 0.0625rem solid #bbadaa;
      margin: 0 1rem 0 0;
      -webkit-box-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto; }
    .det-product .sticky-info .prod-name {
      font-weight: 600;
      line-height: 1.14286;
      width: 33.333%;
      min-width: 25%;
      max-width: 33.333%;
      -webkit-box-flex: 1 1 auto;
      -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      font-size: 1rem; }
      @media (min-width: 992px) {
        .det-product .sticky-info .prod-name {
          font-size: 1.3125rem; } }
    .det-product .sticky-info .form-product {
      margin: 0 1rem;
      -webkit-box-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto; }
      .det-product .sticky-info .form-product form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-flow: row nowrap; }
    .det-product .sticky-info .form-field.quantity {
      margin: 0 1rem 0 0;
      padding: 0;
      border-top: none; }
    .det-product .sticky-info + .jn.sticky {
      top: 7.875rem;
      z-index: 100; }
    .det-product .sticky-info .btt {
      display: none; }
      @media (min-width: 992px) {
        .det-product .sticky-info .btt {
          display: block; } }
  .det-product .form-product {
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELDSET

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELD ELEMENT

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELDS - OPTS SELECT

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELDS - SWATCH

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELDS - OPTS SELECT

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - FIELDS - FIRE

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - QUANTITY

\*  --------------------------------------------------------------------------  */
    /*  --------------------------------------------------------------------------  *\

    PRODUCT DETAIL - PRODUCT VIEW - FORM - ADD TO CART

\*  --------------------------------------------------------------------------  */ }
    .det-product .form-product .option-group {
      display: block; }
    .det-product .form-product h2 {
      display: flex;
      justify-content: space-between;
      color: #5a575d;
      font-size: 0.875rem;
      line-height: 160%;
      font-weight: 600;
      font-family: 'Work Sans';
      text-transform: capitalize;
      margin: 0 0 1rem;
      text-align: left; }
      .det-product .form-product h2 a {
        text-transform: none;
        font-weight: 600;
        font-size: 0.75rem;
        letter-spacing: 0;
        color: #5a575d; }
        .det-product .form-product h2 a:hover, .det-product .form-product h2 a:focus {
          color: #eab444; }
      .det-product .form-product h2 ~ h2 {
        margin-top: 1.5rem; }
      @media (min-width: 992px) {
        .det-product .form-product h2 {
          font-size: 1rem; } }
    .det-product .form-product .form-field + .form-field {
      margin-top: 1rem; }
    .det-product .form-product .form-field label, .det-product .form-product .form-field p, .det-product .form-product .form-field .label {
      font-size: 0.75rem; }
      .det-product .form-product .form-field label small, .det-product .form-product .form-field p small, .det-product .form-product .form-field .label small {
        font-size: 1em;
        font-weight: 300;
        color: #FF0000; }
    .det-product .form-product .form-field input, .det-product .form-product .form-field select, .det-product .form-product .form-field textarea {
      font-size: 0.875rem;
      border: 0.0625rem solid #e3e3e3;
      width: 100%;
      margin: 0.5rem 0 0;
      padding: 0.5625rem 0.75rem; }
      @media (min-width: 992px) {
        .det-product .form-product .form-field input, .det-product .form-product .form-field select, .det-product .form-product .form-field textarea {
          padding: 0.8125rem 1rem; } }
      .det-product .form-product .form-field input:hover, .det-product .form-product .form-field input:focus, .det-product .form-product .form-field select:hover, .det-product .form-product .form-field select:focus, .det-product .form-product .form-field textarea:hover, .det-product .form-product .form-field textarea:focus {
        border-color: #5a575d; }
    .det-product .form-product .form-field select {
      appearance: none;
      -webkit-appearance: none;
      background: url(../img/dropdown-caret.png) no-repeat 95% 50%/8px; }
      .det-product .form-product .form-field select.width-selector, .det-product .form-product .form-field select.height-selector {
        padding-right: 2.5rem; }
    .det-product .form-product #endcapsShape, .det-product .form-product #jointType, .det-product .form-product #pegCount {
      margin-top: 1rem; }
    .det-product .form-product #endcapsShape .warning {
      margin-top: 1rem;
      border-bottom: 1px solid #D5D7DA;
      margin-bottom: 1.5rem; }
    .det-product .form-product .opts-select label {
      margin-bottom: 0.5rem; }
    @media (min-width: 992px) {
      .det-product .form-product .opts-select {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: center;
        flex-flow: row wrap; }
        .det-product .form-product .opts-select select {
          margin: 0; } }
    .det-product .form-product #availableColors {
      margin-top: 1rem; }
    .det-product .form-product .opts-swatch {
      margin: 0 -0.375rem; }
      .det-product .form-product .opts-swatch .swatch-group {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-content: start;
        row-gap: 0.5rem; }
        @media (min-width: 768px) {
          .det-product .form-product .opts-swatch .swatch-group {
            grid-template-columns: repeat(5, 1fr); } }
        .det-product .form-product .opts-swatch .swatch-group div {
          width: auto; }
        .det-product .form-product .opts-swatch .swatch-group [aria-label="N/A"] {
          display: none; }
      .det-product .form-product .opts-swatch[data-option-set] {
        margin-top: 1rem; }
        .det-product .form-product .opts-swatch[data-option-set]:first-child {
          margin-top: 0; }
      .det-product .form-product .opts-swatch p {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        margin: 0 0.375rem 0.75rem;
        font-weight: 400;
        font-size: 0.75rem;
        line-height: 160%;
        color: #5a575d; }
        @media (min-width: 992px) {
          .det-product .form-product .opts-swatch p {
            font-size: 0.875rem; } }
        .det-product .form-product .opts-swatch p span {
          font-weight: 600;
          color: #eab444; }
      .det-product .form-product .opts-swatch input {
        position: absolute;
        width: 1px !important;
        height: 1px;
        padding: 0;
        margin: -1px;
        border: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0); }
      .det-product .form-product .opts-swatch label {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        align-content: stretch;
        flex-flow: row wrap;
        width: calc(25% - 0.5rem);
        height: auto;
        border: none;
        cursor: pointer;
        box-shadow: 0 0 0 #eab444;
        transition: all .25s linear; }
        .det-product .form-product .opts-swatch label:nth-of-type(n + 5) {
          margin-top: 0.5rem; }
        @media (min-width: 992px) {
          .det-product .form-product .opts-swatch label {
            width: calc(20% - 0.5rem); }
            .det-product .form-product .opts-swatch label:nth-of-type(5) {
              margin-top: 0; } }
        .det-product .form-product .opts-swatch label span {
          display: block;
          padding: 80% 0 0;
          border: 0.125rem solid #fff;
          box-shadow: inset 0 0 0 0.125rem #fff;
          background-position: 50% 50%;
          background-size: cover !important;
          background-repeat: no-repeat;
          min-width: 33.333%;
          max-width: 100%;
          width: 33.333%;
          -webkit-box-flex: 1 1 auto;
          -webkit-flex: 1 1 auto;
          -ms-flex: 1 1 auto;
          flex: 1 1 auto; }
          .det-product .form-product .opts-swatch label span.form-option-image {
            padding: 0; }
            .det-product .form-product .opts-swatch label span.form-option-image > img {
              border: 0.125rem solid #fff; }
          .det-product .form-product .opts-swatch label span.title {
            width: 100%;
            padding: 0;
            margin: 0.25rem 0 0;
            text-align: center;
            font-size: 0.625rem;
            line-height: 1.25; }
        .det-product .form-product .opts-swatch label:hover, .det-product .form-product .opts-swatch label:focus {
          box-shadow: 0 0 0.25rem #eab444; }
        .det-product .form-product .opts-swatch label[aria-label="N/A"] {
          display: none !important; }
      .det-product .form-product .opts-swatch input:checked + .swatch > span:not(.title) {
        border-color: #eab444; }
      .det-product .form-product .opts-swatch input:disabled + .swatch {
        cursor: not-allowed;
        position: relative; }
        .det-product .form-product .opts-swatch input:disabled + .swatch:before {
          content: "";
          height: 0.125rem;
          width: 144%;
          position: absolute;
          z-index: 100;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(-50%, -50%) rotate(-47deg);
          -ms-transform: translate(-50%, -50%) rotate(-47deg);
          transform: translate(-50%, -50%) rotate(-47deg);
          background: #e3e3e3; }
        .det-product .form-product .opts-swatch input:disabled + .swatch:after {
          content: "";
          position: absolute;
          z-index: 100;
          left: 0;
          top: 0;
          width: calc(100% - 0.25rem);
          height: calc(100% - 0.25rem);
          border: 0.125rem solid #e3e3e3; }
        .det-product .form-product .opts-swatch input:disabled + .swatch:hover, .det-product .form-product .opts-swatch input:disabled + .swatch:focus {
          box-shadow: none; }
        .det-product .form-product .opts-swatch input:disabled + .swatch span {
          z-index: 0;
          opacity: 0.667; }
    .det-product .form-product .dimensions {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: flex-end;
      align-content: flex-start;
      flex-flow: row nowrap;
      margin: 0 -0.5rem; }
      .det-product .form-product .dimensions .opts-select {
        margin: 0 0.5rem; }
      .det-product .form-product .dimensions select {
        background: url(../img/test-dimension.png) no-repeat 100% 50%/contain; }
      .det-product .form-product .dimensions > div {
        flex-flow: column nowrap;
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: calc(33.333% - 1rem); }
        .det-product .form-product .dimensions > div label, .det-product .form-product .dimensions > div select {
          width: 100%; }
        .det-product .form-product .dimensions > div label {
          margin: 0 0 0.5rem; }
        .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4),
        .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4) ~ div {
          width: calc(25% - 1rem); }
      @media (max-width: 340px) {
        .det-product .form-product .dimensions {
          flex-flow: row wrap; }
          .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4),
          .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4) ~ div {
            width: calc(50% - 1rem); }
            .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4):nth-child(n + 3),
            .det-product .form-product .dimensions > div:first-of-type:nth-last-of-type(n + 4) ~ div:nth-child(n + 3) {
              margin-top: 1rem; } }
    .det-product .form-product .form-field.fire,
    .det-product .form-product .form-field.radio {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-flow: row wrap;
      border: none;
      margin-bottom: 1rem; }
      .det-product .form-product .form-field.fire + .form-field,
      .det-product .form-product .form-field.radio + .form-field {
        margin-bottom: 1rem; }
      .det-product .form-product .form-field.fire.disabled,
      .det-product .form-product .form-field.radio.disabled {
        color: #bbadaa;
        pointer-events: none; }
        .det-product .form-product .form-field.fire.disabled .tooltip-trigger.icon-i,
        .det-product .form-product .form-field.radio.disabled .tooltip-trigger.icon-i {
          background: #5a575d; }
        .det-product .form-product .form-field.fire.disabled label:before,
        .det-product .form-product .form-field.radio.disabled label:before {
          border-color: #bbadaa; }
        .det-product .form-product .form-field.fire.disabled input:checked + label:before,
        .det-product .form-product .form-field.radio.disabled input:checked + label:before {
          border-color: #bbadaa;
          background: #bbadaa; }
      .det-product .form-product .form-field.fire .label,
      .det-product .form-product .form-field.radio .label {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        margin: 0 0 0.5rem;
        font-size: 0.875rem;
        font-weight: 600;
        line-height: 160%; }
        .det-product .form-product .form-field.fire .label .tooltip-trigger,
        .det-product .form-product .form-field.radio .label .tooltip-trigger {
          background: #5a575d; }
      .det-product .form-product .form-field.fire label,
      .det-product .form-product .form-field.radio label {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 3.125rem;
        margin: 0 0 0 0.9375rem;
        padding: 0 0 0 1.5rem;
        position: relative; }
        .det-product .form-product .form-field.fire label:first-of-type,
        .det-product .form-product .form-field.radio label:first-of-type {
          margin: 0; }
        .det-product .form-product .form-field.fire label:before,
        .det-product .form-product .form-field.radio label:before {
          content: "";
          position: absolute;
          left: 0;
          top: 50%;
          -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
          width: 0.875rem;
          height: 0.875rem;
          border: 0.0625rem solid #bbadaa;
          border-radius: 100%;
          transition: all .125s linear; }
      .det-product .form-product .form-field.fire input,
      .det-product .form-product .form-field.radio input {
        position: absolute;
        width: 1px !important;
        height: 1px;
        padding: 0;
        margin: -1px;
        border: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0); }
        .det-product .form-product .form-field.fire input:checked + label:before,
        .det-product .form-product .form-field.radio input:checked + label:before {
          border: 0.125rem solid #5a575d;
          width: 0.8125rem;
          height: 0.8125rem;
          background: #5a575d;
          box-shadow: inset 0 0 0 0.1875rem #fff; }
      @media (min-width: 992px) {
        .det-product .form-product .form-field.fire,
        .det-product .form-product .form-field.radio {
          justify-content: space-between;
          flex-flow: row nowrap; }
          .det-product .form-product .form-field.fire .label,
          .det-product .form-product .form-field.radio .label {
            -webkit-box-flex: 1 1 auto;
            -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
            margin: 0; }
          .det-product .form-product .form-field.fire label:first-of-type,
          .det-product .form-product .form-field.radio label:first-of-type {
            margin: 0 0 0 0.9375rem; } }
    .det-product .form-product .quantity {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-flow: row wrap;
      margin: 0 0 1.25rem; }
      @media (min-width: 768px) {
        .det-product .form-product .quantity {
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          flex-flow: row nowrap;
          margin: 0 0 1.5rem; } }
      @media (min-width: 992px) {
        .det-product .form-product .quantity {
          margin: 0 0 2rem; } }
      .det-product .form-product .quantity label {
        font-size: 1rem;
        font-weight: 400;
        margin: 0.875rem 1rem 0 0;
        align-self: flex-start; }
        @media (min-width: 576px) {
          .det-product .form-product .quantity label {
            align-self: center;
            margin: 0 1rem 0 0; } }
      .det-product .form-product .quantity .form-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-flow: column nowrap; }
        @media (min-width: 576px) {
          .det-product .form-product .quantity .form-wrapper {
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-flow: row nowrap; } }
      .det-product .form-product .quantity .form-increment {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        align-content: stretch;
        flex-flow: row nowrap;
        width: 7.5rem; }
        .det-product .form-product .quantity .form-increment button {
          -webkit-box-flex: 0 0 auto;
          -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto;
          width: 2.1875rem;
          border: 0.0625rem solid #e3e3e3;
          background: #fff;
          color: #bbadaa;
          position: relative;
          transition: all 0.25s linear; }
          .det-product .form-product .quantity .form-increment button:before, .det-product .form-product .quantity .form-increment button:after {
            content: "";
            height: 0.125rem;
            width: 0.75rem;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            background: #5a575d;
            transition: all 0.25s linear; }
          .det-product .form-product .quantity .form-increment button:hover, .det-product .form-product .quantity .form-increment button:focus {
            background-color: #5a575d;
            color: #fff; }
            .det-product .form-product .quantity .form-increment button:hover:before, .det-product .form-product .quantity .form-increment button:hover:after, .det-product .form-product .quantity .form-increment button:focus:before, .det-product .form-product .quantity .form-increment button:focus:after {
              background: #fff; }
          .det-product .form-product .quantity .form-increment button:active {
            background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), #5A575D; }
            .det-product .form-product .quantity .form-increment button:active:before, .det-product .form-product .quantity .form-increment button:active:after {
              background: #fff; }
        .det-product .form-product .quantity .form-increment input {
          -webkit-box-flex: 0 1 auto;
          -webkit-flex: 0 1 auto;
          -ms-flex: 0 1 auto;
          flex: 0 1 auto;
          margin: 0;
          width: calc(100% - 4.375rem);
          padding: 0.75rem 0.375rem;
          border-left: none;
          border-right: none;
          text-align: center; }
        .det-product .form-product .quantity .form-increment .inc-minus:after {
          display: none; }
        .det-product .form-product .quantity .form-increment .inc-plus:after {
          transform: translate(-50%, -50%) rotate(90deg); }
      .det-product .form-product .quantity .calculator {
        margin: 1rem 0 0;
        font-size: 0.75rem;
        line-height: 1rem;
        font-weight: 600;
        color: #bbadaa; }
        @media (min-width: 576px) {
          .det-product .form-product .quantity .calculator {
            margin: 0 0 0 1rem; } }
    .det-product .form-product .form-action {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: column;
      row-gap: 1rem; }
      .det-product .form-product .form-action button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: row;
        column-gap: 0.625rem; }
        .det-product .form-product .form-action button svg {
          width: 1.125rem;
          height: 1.125rem; }
      .det-product .form-product .form-action [class*="btn-"] {
        width: 100%;
        height: 2.6875rem;
        font-size: 0.875rem;
        line-height: 1.5rem;
        font-weight: 600;
        margin: 0; }
        .det-product .form-product .form-action [class*="btn-"]:hover {
          color: #fff; }
  .det-product table.subtotal {
    border-bottom: 0.0625rem solid #e3e3e3;
    margin: 0.5rem 0 1.5rem; }
    @media (max-width: 767.9px) {
      .det-product table.subtotal {
        margin: 1.5rem 0; } }
    .det-product table.subtotal th, .det-product table.subtotal td {
      font-size: 1.25rem;
      padding: 1rem 0;
      text-align: left;
      border: none;
      letter-spacing: normal; }
      @media (max-width: 767.9px) {
        .det-product table.subtotal th, .det-product table.subtotal td {
          font-size: 0.875rem; } }
    @media (min-width: 992px) {
      .det-product table.subtotal tr {
        display: flex;
        flex-direction: row;
        justify-content: flex-start; } }
    .det-product table.subtotal tr:last-child th, .det-product table.subtotal tr:last-child td {
      padding-top: 0.5rem;
      padding-bottom: 1.5rem; }
    .det-product table.subtotal p {
      font-size: 1.125rem;
      margin: 0; }
    .det-product table.subtotal th {
      width: 41.667%;
      font-weight: 400; }
      @media (min-width: 992px) {
        .det-product table.subtotal th {
          width: auto;
          margin-right: 0.5625rem; } }
    .det-product table.subtotal td {
      width: 58.333%;
      text-align: right;
      font-size: 1rem;
      font-weight: 400; }
      @media (min-width: 992px) {
        .det-product table.subtotal td {
          width: auto;
          text-align: left; } }
    .det-product table.subtotal em {
      display: block;
      font-size: 0.75rem;
      font-style: normal; }
  .det-product input[type="hidden"] + .subtotal {
    border-top: 0.0625rem solid #e3e3e3; }
    .det-product input[type="hidden"] + .subtotal tr:first-child th, .det-product input[type="hidden"] + .subtotal tr:first-child td {
      padding-top: 2rem; }
  .det-product .accordion.acc-description {
    margin: 0 0 1.5rem; }
    @media (min-width: 768px) {
      .det-product .accordion.acc-description {
        padding: 1.5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-flow: row wrap;
        background: #fff;
        border: 0.0625rem solid #bbadaa; }
        .det-product .accordion.acc-description button {
          border-bottom: none;
          font-size: 1rem;
          font-weight: 600;
          line-height: 1;
          color: #eab444;
          letter-spacing: .12em;
          text-transform: uppercase;
          padding: 0;
          cursor: default;
          pointer-events: none; }
          .det-product .accordion.acc-description button:before, .det-product .accordion.acc-description button:after {
            display: none; }
          .det-product .accordion.acc-description button:hover, .det-product .accordion.acc-description button:focus {
            color: #eab444; }
          .det-product .accordion.acc-description button[aria-expanded="true"] {
            color: #eab444; }
        .det-product .accordion.acc-description > dt, .det-product .accordion.acc-description > dd {
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: 0;
          align-items: 0;
          align-content: auto;
          flex-flow: row wrap;
          width: 100%;
          order: 5; }
          .det-product .accordion.acc-description > dt:nth-of-type(1), .det-product .accordion.acc-description > dd:nth-of-type(1) {
            width: calc(66.667% - 3.875rem); }
          .det-product .accordion.acc-description > dt:nth-of-type(2), .det-product .accordion.acc-description > dd:nth-of-type(2) {
            width: calc(33.333% - 3.875rem); }
        .det-product .accordion.acc-description > dt {
          margin: 0 0 1.5rem;
          border-top: none; }
          .det-product .accordion.acc-description > dt:nth-of-type(1) {
            order: 1; }
          .det-product .accordion.acc-description > dt:nth-of-type(2) {
            order: 2; }
          .det-product .accordion.acc-description > dt:nth-of-type(n + 3) {
            border-top: 0.0625rem solid #bbadaa;
            margin: 2rem 0 1.5rem;
            padding: 2rem 0 0; }
        .det-product .accordion.acc-description > dd {
          display: block !important;
          padding: 0; }
          .det-product .accordion.acc-description > dd:nth-of-type(1) {
            order: 3; }
          .det-product .accordion.acc-description > dd:nth-of-type(2) {
            order: 4; }
          .det-product .accordion.acc-description > dd:nth-of-type(n + 3) > ul {
            -webkit-column-count: 3;
            -ms-column-count: 3;
            column-count: 3;
            -webkit-column-gap: 2rem;
            -ms-column-gap: 2rem;
            column-gap: 2rem; }
            .det-product .accordion.acc-description > dd:nth-of-type(n + 3) > ul > li {
              display: inline-block;
              width: 100%;
              margin: 0.5rem 0; } }
  @media (min-width: 768px) and (min-width: 992px) {
    .det-product .accordion.acc-description {
      padding: 2rem 3rem; } }
  @media (min-width: 768px) and (min-width: 1200px) {
    .det-product .accordion.acc-description {
      padding: 2.625rem 6rem; } }
  .det-product .short-desc {
    margin: 1.5rem 0; }
    @media (min-width: 768px) {
      .det-product .short-desc {
        margin: 1.5rem 0 0;
        padding: 1.5rem 0 0;
        border-top: 0.0625rem solid #bbadaa; } }
  .det-product #Reviews {
    padding-bottom: 0; }
    .det-product #Reviews .reviews-wrap {
      border: 1px solid #e3e3e3;
      padding: 3rem 4.5rem; }
      @media (min-width: 768px) {
        .det-product #Reviews .reviews-wrap {
          padding: 4.5rem; } }
    .det-product #Reviews h2 {
      margin-bottom: 1.5rem; }
    .det-product #Reviews #stampedReviewsWrap .stamped-container {
      margin: 0 auto !important; }
    .det-product #Reviews #stampedReviewsWrap .stamped-header-title {
      display: none; }
    .det-product #Reviews #stampedReviewsWrap .stamped-tabs li {
      padding: 0.5rem 0 !important;
      font-family: 'Verdana';
      font-weight: 400;
      text-transform: uppercase;
      background-color: transparent;
      letter-spacing: 0.08em; }
      .det-product #Reviews #stampedReviewsWrap .stamped-tabs li:before {
        display: none; }
    .det-product #Reviews #stampedReviewsWrap .stamped-summary .stamped-summary-actions .stamped-summary-actions-newreview, .det-product #Reviews #stampedReviewsWrap .stamped-summary .stamped-summary-actions .stamped-summary-actions-newquestion {
      box-shadow: none !important;
      border-color: #e3e3e3;
      border-radius: 0;
      color: #5a575d !important; }
      .det-product #Reviews #stampedReviewsWrap .stamped-summary .stamped-summary-actions .stamped-summary-actions-newreview::before, .det-product #Reviews #stampedReviewsWrap .stamped-summary .stamped-summary-actions .stamped-summary-actions-newquestion::before {
        color: #eab444; }
  .det-product .form-review {
    max-width: 50rem;
    margin: 0 auto; }
    .det-product .form-review .form-btns {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: row nowrap; }
    .det-product .form-review .g-recaptcha {
      padding: 0 0 0 13.5rem; }
  .det-product .rating-lg .review-link {
    font-size: 1rem;
    line-height: 1; }
  .det-product .rating-lg svg {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 0 0 0.125rem; }
  @media (min-width: 768px) {
    .det-product .rating-lg {
      position: absolute;
      left: 0;
      top: 0; } }
  .det-product #prodCCPanel .img-comp-container {
    position: relative;
    height: auto;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .det-product #prodCCPanel .img-comp-container .img-comp-img {
      position: relative;
      width: 48%; }
      .det-product #prodCCPanel .img-comp-container .img-comp-img:first-child {
        order: 2; }
      .det-product #prodCCPanel .img-comp-container .img-comp-img img {
        display: block;
        width: 100%;
        height: auto; }
    @media (min-width: 992px) {
      .det-product #prodCCPanel .img-comp-container {
        height: 27.5rem;
        max-width: 36.625rem;
        display: block; }
        .det-product #prodCCPanel .img-comp-container .img-comp-img {
          position: absolute;
          width: 100%;
          height: 100%;
          overflow: hidden; }
          .det-product #prodCCPanel .img-comp-container .img-comp-img img {
            display: block;
            width: auto;
            height: 100%; } }
    .det-product #prodCCPanel .img-comp-container .img-comp-slider {
      position: absolute;
      z-index: 9;
      cursor: ew-resize;
      /*set the appearance of the slider:*/
      width: 40px;
      height: 40px;
      background-color: #164d65;
      opacity: 0.7;
      border-radius: 50%;
      color: #fff;
      display: none; }
      @media (min-width: 992px) {
        .det-product #prodCCPanel .img-comp-container .img-comp-slider {
          display: block; } }
      .det-product #prodCCPanel .img-comp-container .img-comp-slider:before {
        content: "< >";
        font-weight: bold;
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        text-align: center;
        width: 100%; }
      .det-product #prodCCPanel .img-comp-container .img-comp-slider:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0.125rem;
        height: 27.5rem;
        background-color: #164d65;
        opacity: 0.7;
        z-index: -1; }
  .det-product #prodCCPanel .image-swatches {
    display: block;
    margin: 1.5rem 0; }
    .det-product #prodCCPanel .image-swatches h3 {
      margin: 0 0 1.5rem; }
    @media (min-width: 768px) {
      .det-product #prodCCPanel .image-swatches {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1.5rem; } }
    .det-product #prodCCPanel .image-swatches > div {
      max-width: 28.125rem; }
    .det-product #prodCCPanel .image-swatches .opts-swatch {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      align-content: flex-start;
      flex-flow: row wrap;
      margin: 0 -0.375rem 2rem; }
      .det-product #prodCCPanel .image-swatches .opts-swatch p {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        margin: 0 0.375rem 0.75rem; }
        .det-product #prodCCPanel .image-swatches .opts-swatch p span {
          font-weight: 600; }
      .det-product #prodCCPanel .image-swatches .opts-swatch input {
        position: absolute;
        width: 1px !important;
        height: 1px;
        padding: 0;
        margin: -1px;
        border: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0); }
      .det-product #prodCCPanel .image-swatches .opts-swatch label {
        -webkit-box-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        align-content: stretch;
        flex-flow: row wrap;
        width: calc(25% - 0.5rem);
        margin: 0 0.25rem;
        height: auto;
        border: none;
        cursor: pointer;
        box-shadow: 0 0 0 #eab444;
        transition: all .25s linear;
        background: #fff; }
        .det-product #prodCCPanel .image-swatches .opts-swatch label:nth-of-type(n + 5) {
          margin-top: 0.5rem; }
        @media (min-width: 992px) {
          .det-product #prodCCPanel .image-swatches .opts-swatch label {
            width: calc(20% - 0.5rem); }
            .det-product #prodCCPanel .image-swatches .opts-swatch label:nth-of-type(5) {
              margin-top: 0; } }
        .det-product #prodCCPanel .image-swatches .opts-swatch label span {
          display: block;
          padding: 80% 0 0;
          border: 0.125rem solid #fff;
          box-shadow: inset 0 0 0 0.125rem #fff;
          background-position: 50% 50%;
          background-size: cover !important;
          background-repeat: no-repeat;
          overflow: hidden;
          min-width: 33.333%;
          max-width: 100%;
          width: 33.333%;
          -webkit-box-flex: 1 1 auto;
          -webkit-flex: 1 1 auto;
          -ms-flex: 1 1 auto;
          flex: 1 1 auto; }
          .det-product #prodCCPanel .image-swatches .opts-swatch label span.form-option-image {
            padding: 0; }
            .det-product #prodCCPanel .image-swatches .opts-swatch label span.form-option-image > img {
              border: 0.125rem solid #fff; }
          .det-product #prodCCPanel .image-swatches .opts-swatch label span.title {
            width: 100%;
            padding: 0;
            margin: 0.25rem 0 0.25rem;
            text-align: center;
            font-size: 0.625rem;
            line-height: 1.25; }
        .det-product #prodCCPanel .image-swatches .opts-swatch label:hover, .det-product #prodCCPanel .image-swatches .opts-swatch label:focus {
          box-shadow: 0 0 0.25rem #eab444; }
        .det-product #prodCCPanel .image-swatches .opts-swatch label[aria-label="N/A"] {
          display: none !important; }
      .det-product #prodCCPanel .image-swatches .opts-swatch input:checked + .swatch > span:not(.title) {
        border-color: #eab444; }
      .det-product #prodCCPanel .image-swatches .opts-swatch input:disabled + .swatch {
        cursor: not-allowed;
        position: relative; }
        .det-product #prodCCPanel .image-swatches .opts-swatch input:disabled + .swatch:before {
          content: "";
          height: 0.125rem;
          width: 150%;
          position: absolute;
          z-index: 100;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(-50%, -50%) rotate(-38deg);
          -ms-transform: translate(-50%, -50%) rotate(-38deg);
          transform: translate(-50%, -50%) rotate(-38deg);
          background: #FF0000; }
        .det-product #prodCCPanel .image-swatches .opts-swatch input:disabled + .swatch:after {
          content: "";
          position: absolute;
          z-index: 100;
          left: 0;
          top: 0;
          width: calc(100% - 0.25rem);
          height: calc(100% - 0.25rem);
          border: 0.125rem solid #FF0000; }
        .det-product #prodCCPanel .image-swatches .opts-swatch input:disabled + .swatch:hover, .det-product #prodCCPanel .image-swatches .opts-swatch input:disabled + .swatch:focus {
          box-shadow: none; }
        .det-product #prodCCPanel .image-swatches .opts-swatch input:disabled + .swatch span {
          z-index: 0;
          opacity: 0.667; }
  .det-product #prodCCPanel .cta-wrap {
    text-align: center; }

.det-article {
  /*  --------------------------------------------------------------------------  *\

    ARTICLE - BY LINE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    ARTICLE - TAGS

\*  --------------------------------------------------------------------------  */ }
  .det-article p.byline {
    font-size: 1rem;
    line-height: 1.5; }
  .det-article .tags {
    margin: 2.5rem 0 0;
    padding: 2.5rem 0 0;
    border-top: 0.0625rem solid #ef9662;
    color: #ef9662;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .12em; }
    .det-article .tags a {
      color: #eacb86; }
      .det-article .tags a:hover, .det-article .tags a:focus {
        color: #eacb86;
        text-decoration: underline; }

/*  --------------------------------------------------------------------------  *\

    ARTICLE - Hubspot Blog Card

\*  --------------------------------------------------------------------------  */
[data-hbs-blog-featured] article,
[data-hbs-blog-tag] article {
  border: 1px solid #bbadaa;
  padding: 0;
  position: relative;
  margin: 0.5rem !important;
  width: calc(100% - 1rem); }

[data-hbs-blog-featured] .tags,
[data-hbs-blog-tag] .tags {
  position: absolute;
  top: 5%;
  left: 0; }
  [data-hbs-blog-featured] .tags .tag,
  [data-hbs-blog-tag] .tags .tag {
    background: #eab444;
    display: flex;
    color: #e3e3e3;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: .1em;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem 0.75rem;
    text-transform: uppercase; }
    [data-hbs-blog-featured] .tags .tag:before,
    [data-hbs-blog-tag] .tags .tag:before {
      content: '';
      background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-wine.png) no-repeat 50% 50%/contain;
      margin: 0 0.5rem 0 0;
      width: 1rem;
      height: 1rem; }
  [data-hbs-blog-featured] .tags .tag-how-to-guide, [data-hbs-blog-featured] .tags .tag.tag-learn,
  [data-hbs-blog-tag] .tags .tag-how-to-guide,
  [data-hbs-blog-tag] .tags .tag.tag-learn {
    background: #eacb86; }
    [data-hbs-blog-featured] .tags .tag-how-to-guide:before, [data-hbs-blog-featured] .tags .tag.tag-learn:before,
    [data-hbs-blog-tag] .tags .tag-how-to-guide:before,
    [data-hbs-blog-tag] .tags .tag.tag-learn:before {
      background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-how-to.png) no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .tags .tag-info:before,
  [data-hbs-blog-tag] .tags .tag-info:before {
    background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-info.png) no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .tags .tag-news,
  [data-hbs-blog-tag] .tags .tag-news {
    background: #999999; }
    [data-hbs-blog-featured] .tags .tag-news:before,
    [data-hbs-blog-tag] .tags .tag-news:before {
      background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-news.png) no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .tags .tag-reviews, [data-hbs-blog-featured] .tags .tag-beer-reviews,
  [data-hbs-blog-tag] .tags .tag-reviews,
  [data-hbs-blog-tag] .tags .tag-beer-reviews {
    background: #666666; }
    [data-hbs-blog-featured] .tags .tag-reviews:before, [data-hbs-blog-featured] .tags .tag-beer-reviews:before,
    [data-hbs-blog-tag] .tags .tag-reviews:before,
    [data-hbs-blog-tag] .tags .tag-beer-reviews:before {
      background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-reviews.png) no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .tags .tag-blog-post,
  [data-hbs-blog-tag] .tags .tag-blog-post {
    background: #444444; }
    [data-hbs-blog-featured] .tags .tag-blog-post:before,
    [data-hbs-blog-tag] .tags .tag-blog-post:before {
      background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-blog.png) no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .tags .tag-featured-project,
  [data-hbs-blog-tag] .tags .tag-featured-project {
    background: #f1e6d6; }
    [data-hbs-blog-featured] .tags .tag-featured-project:before,
    [data-hbs-blog-tag] .tags .tag-featured-project:before {
      background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-featured.png) no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .tags .tag-recipes,
  [data-hbs-blog-tag] .tags .tag-recipes {
    background: #777777; }
    [data-hbs-blog-featured] .tags .tag-recipes:before,
    [data-hbs-blog-tag] .tags .tag-recipes:before {
      background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-recipes.png) no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .tags .tag-beer,
  [data-hbs-blog-tag] .tags .tag-beer {
    background: #164d65; }
    [data-hbs-blog-featured] .tags .tag-beer:before,
    [data-hbs-blog-tag] .tags .tag-beer:before {
      background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-beer.png) no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .tags .tag-cocktail-recipes, [data-hbs-blog-featured] .tags .tag-cocktails-recipes,
  [data-hbs-blog-tag] .tags .tag-cocktail-recipes,
  [data-hbs-blog-tag] .tags .tag-cocktails-recipes {
    background: #f0d9a8; }
    [data-hbs-blog-featured] .tags .tag-cocktail-recipes:before, [data-hbs-blog-featured] .tags .tag-cocktails-recipes:before,
    [data-hbs-blog-tag] .tags .tag-cocktail-recipes:before,
    [data-hbs-blog-tag] .tags .tag-cocktails-recipes:before {
      background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-cocktail.png) no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .tags .tag-wine:before,
  [data-hbs-blog-tag] .tags .tag-wine:before {
    background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-wine.png) no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .tags .tag-spirits,
  [data-hbs-blog-tag] .tags .tag-spirits {
    background: #164d65; }
    [data-hbs-blog-featured] .tags .tag-spirits:before,
    [data-hbs-blog-tag] .tags .tag-spirits:before {
      background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-spirits.png) no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .tags .tag-fun-stuff, [data-hbs-blog-featured] .tags [class*="tag-parties"],
  [data-hbs-blog-tag] .tags .tag-fun-stuff,
  [data-hbs-blog-tag] .tags [class*="tag-parties"] {
    background: #164d65; }
    [data-hbs-blog-featured] .tags .tag-fun-stuff:before, [data-hbs-blog-featured] .tags [class*="tag-parties"]:before,
    [data-hbs-blog-tag] .tags .tag-fun-stuff:before,
    [data-hbs-blog-tag] .tags [class*="tag-parties"]:before {
      background: url(https://f.hubspotusercontent40.net/hubfs/6632597/KegWorks%20Assets/tag-assets/tag-fun-stuff.png) no-repeat 50% 50%/contain; }

[data-hbs-blog-featured] .cnt,
[data-hbs-blog-tag] .cnt {
  padding: 1rem; }

[data-hbs-blog-featured] .readmore,
[data-hbs-blog-tag] .readmore {
  color: #ef9662;
  display: flex;
  font-weight: 600;
  align-items: center;
  text-transform: uppercase; }
  [data-hbs-blog-featured] .readmore:after,
  [data-hbs-blog-tag] .readmore:after {
    content: '';
    margin-left: 0.75rem;
    width: 1rem;
    height: 1rem;
    background: url('data:image/svg+xml;utf8,<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.5118 5.85011L6.56565 1.90396L7.48475 0.984863L13 6.50011L12.5404 6.95966L7.48475 12.0154L6.56565 11.0963L10.5118 7.15011H0V5.85011H10.5118Z" fill="%2398262B"/></svg>') no-repeat 50% 50%/contain; }
  [data-hbs-blog-featured] .readmore:hover, [data-hbs-blog-featured] .readmore:focus,
  [data-hbs-blog-tag] .readmore:hover,
  [data-hbs-blog-tag] .readmore:focus {
    color: #444444; }
    [data-hbs-blog-featured] .readmore:hover:after, [data-hbs-blog-featured] .readmore:focus:after,
    [data-hbs-blog-tag] .readmore:hover:after,
    [data-hbs-blog-tag] .readmore:focus:after {
      background: url('data:image/svg+xml;utf8,<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.5118 5.85011L6.56565 1.90396L7.48475 0.984863L13 6.50011L12.5404 6.95966L7.48475 12.0154L6.56565 11.0963L10.5118 7.15011H0V5.85011H10.5118Z" fill="%2389431c"/></svg>') no-repeat 50% 50%/contain; }

@media (min-width: 768px) {
  [data-hbs-blog-featured] article,
  [data-hbs-blog-tag] article {
    width: calc(33.3% - 1rem); } }

/*  --------------------------------------------------------------------------  *\

    COMMERCE COMPONENTS

    This is where all components directly related to commerce components will
    be styled.  This includes the Shopping Cart, Mini Cart, and Checkout.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    COMMERCE > SHOPPING CART

\*  --------------------------------------------------------------------------  */
.cart .return-policy {
  margin-top: 1.5rem; }
  .cart .return-policy h4, .cart .return-policy p {
    font-size: 0.75rem;
    line-height: 140%; }
  .cart .return-policy h4 {
    font-weight: bold;
    margin-bottom: 0.75rem; }

.cart .totals-title {
  margin: 1rem 0;
  text-align: center; }

.cart .order-details-info {
  margin-top: 1rem; }

.cart .hero:before {
  display: none; }

.cart .hero {
  background-color: transparent; }
  .cart .hero .container {
    border-bottom: none; }
    .cart .hero .container > h1 {
      margin-bottom: 0;
      padding-bottom: 0;
      font-style: normal;
      font-weight: normal;
      font-size: 2rem;
      line-height: 38px;
      letter-spacing: -0.01em;
      padding: 0; }
      @media (min-width: 768px) {
        .cart .hero .container > h1 {
          font-size: 2.5rem;
          line-height: 43px; } }

.cart section[data-rfk-widget] {
  padding-top: 0; }
  .cart section[data-rfk-widget] .container h2 {
    border-top: 1px solid #e3e3e3;
    padding-top: 2.25rem; }

@media (min-width: 992px) {
  .cart div[class*="col-"]:first-child {
    padding-right: 2rem; }
  .cart div[class*="col-"]:last-child {
    padding-left: 2rem; } }

.cart .cart-grid {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-template-areas: "cart-heading" "cart-totals" "cart-line-items"; }
  @media (min-width: 992px) {
    .cart .cart-grid {
      grid-template-columns: 2fr 1fr;
      grid-template-rows: 75px auto;
      grid-template-areas: "cart-heading cart-totals" "cart-line-items cart-totals";
      column-gap: 2rem; } }
  .cart .cart-grid .cart-heading {
    grid-area: cart-heading; }
    .cart .cart-grid .cart-heading h1 {
      font-weight: normal;
      font-size: 2rem;
      line-height: 38px;
      letter-spacing: -0.01em;
      padding: 0;
      margin: 0 0 1rem; }
      @media (min-width: 768px) {
        .cart .cart-grid .cart-heading h1 {
          font-size: 2.5rem;
          line-height: 43px;
          margin: 0 0 2rem; } }
  .cart .cart-grid .cart-line-items {
    grid-area: cart-line-items; }
    .cart .cart-grid .cart-line-items .jc-space-between.med-down-only {
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start; }
      .cart .cart-grid .cart-line-items .jc-space-between.med-down-only .cart-actions {
        width: 100%;
        margin: 1rem 0; }
      .cart .cart-grid .cart-line-items .jc-space-between.med-down-only .btn-primary {
        height: 3.5rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center; }
        .cart .cart-grid .cart-line-items .jc-space-between.med-down-only .btn-primary svg {
          margin: -0.1875rem 0.625rem 0 0; }
  .cart .cart-grid .cart-totals {
    grid-area: cart-totals; }
    .cart .cart-grid .cart-totals .multiple-payments {
      margin: 1rem 0 0; }
      .cart .cart-grid .cart-totals .multiple-payments > div {
        display: flex;
        flex-direction: column;
        background: #f6f6f6;
        width: 100%;
        padding: 1rem; }
        @media (min-width: 768px) {
          .cart .cart-grid .cart-totals .multiple-payments > div {
            flex-direction: row;
            align-items: center;
            padding: 1rem 1.5rem; }
            .cart .cart-grid .cart-totals .multiple-payments > div > div:first-child {
              padding: 0 1rem 0 0; }
            .cart .cart-grid .cart-totals .multiple-payments > div > div:last-child {
              padding: 0 0 0 1rem;
              border-left: 1px solid #E4E4E4; } }
        .cart .cart-grid .cart-totals .multiple-payments > div p {
          color: #5a575d;
          font-weight: 500;
          font-size: 0.75rem;
          line-height: 150%;
          margin: 0; }
          @media (min-width: 768px) {
            .cart .cart-grid .cart-totals .multiple-payments > div p {
              line-height: 140%; } }
          .cart .cart-grid .cart-totals .multiple-payments > div p a {
            text-decoration: none;
            font-weight: bold; }
            .cart .cart-grid .cart-totals .multiple-payments > div p a:hover, .cart .cart-grid .cart-totals .multiple-payments > div p a:focus {
              text-decoration: underline; }
        .cart .cart-grid .cart-totals .multiple-payments > div.mp-ppc {
          margin: 0 0 1rem; }
          .cart .cart-grid .cart-totals .multiple-payments > div.mp-ppc svg {
            height: auto;
            width: 3.4375rem;
            display: block;
            margin: 0 0 0.5rem; }
            @media (min-width: 768px) {
              .cart .cart-grid .cart-totals .multiple-payments > div.mp-ppc svg {
                margin: 0;
                width: 5rem; } }
        .cart .cart-grid .cart-totals .multiple-payments > div.mp-ap img {
          height: auto;
          width: 5rem;
          display: block;
          margin: 0 0 0.5rem; }
          @media (min-width: 768px) {
            .cart .cart-grid .cart-totals .multiple-payments > div.mp-ap img {
              margin: 0; } }

.cont-shopping, .empty-cart {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none; }
  .cont-shopping:hover, .cont-shopping:focus, .empty-cart:hover, .empty-cart:focus {
    text-decoration: underline; }

.cont-shopping {
  color: #a57d2c;
  position: relative;
  padding: 0 0 0 1.625rem;
  margin: 0 0 1rem; }
  @media (min-width: 992px) {
    .cont-shopping {
      margin: 0; } }
  .cont-shopping:before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 10px 8px 0;
    border-color: transparent currentColor transparent transparent; }
  .cont-shopping:hover, .cont-shopping:focus {
    color: #5a575d; }

.empty-cart {
  color: #5a575d;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center; }
  .empty-cart:hover, .empty-cart:focus {
    color: #000;
    text-decoration: none; }
  .empty-cart svg {
    width: 16px;
    height: 17px;
    color: currentColor;
    margin: -0.1875rem 0.5rem 0 0; }
    .empty-cart svg path {
      fill: currentColor; }

.flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 0.75rem; }
  .flex.jc-space-between {
    justify-content: space-between; }

.line-items {
  border: none;
  width: 100%; }
  @media (min-width: 768px) {
    .line-items .mob-only {
      display: none; } }
  .line-items .warning-message {
    color: red; }
  .line-items .strong {
    font-weight: 700; }
  .line-items .price {
    font-size: 1rem; }
    @media (min-width: 768px) {
      .line-items .price {
        text-align: right !important; } }
    @media (min-width: 992px) {
      .line-items .price {
        text-align: center;
        margin-left: 0; } }
  .line-items thead {
    display: none !important; }
    @media (min-width: 768px) {
      .line-items thead {
        display: block !important; } }
    .line-items thead tr {
      border: none; }
      .line-items thead tr th {
        padding-left: 0;
        font-style: normal;
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 21px;
        text-transform: capitalize;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        border: none; }
        .line-items thead tr th:first-child {
          width: 65%; }
        .line-items thead tr th:last-child {
          width: 35%; }
        .line-items thead tr th::after {
          content: none; }
  .line-items tr {
    display: flex;
    flex-direction: column;
    border-top: 0.0625rem solid #e3e3e3;
    border-bottom: 0.0625rem solid #e3e3e3;
    padding: 0 0 1.25rem; }
    @media (min-width: 768px) {
      .line-items tr {
        flex-direction: row;
        padding: 0; } }
    .line-items tr > td {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 1.5rem 0 0;
      background: transparent;
      border: none;
      text-align: left;
      width: 100%; }
      @media (min-width: 768px) {
        .line-items tr > td {
          padding: 1.5rem 0 1.5rem 1.0625rem;
          flex-direction: row; } }
      .line-items tr > td:first-child {
        width: 100% !important;
        flex-direction: row; }
        @media (min-width: 768px) {
          .line-items tr > td:first-child {
            justify-content: flex-start;
            width: 65% !important;
            padding-right: 2rem;
            padding-left: 0; } }
        .line-items tr > td:first-child > a {
          border: 1px solid #e3e3e3;
          width: 25%;
          display: block;
          margin: 0 1rem 0 0; }
          @media (min-width: 768px) {
            .line-items tr > td:first-child > a {
              width: 40%;
              margin: 0 2rem 0 0; } }
        .line-items tr > td:first-child > div {
          display: flex;
          flex-direction: column;
          align-items: flex-start; }
          .line-items tr > td:first-child > div .sku {
            color: #666666; }
      .line-items tr > td:last-child {
        width: 100% !important;
        flex-direction: row; }
        @media (min-width: 768px) {
          .line-items tr > td:last-child {
            justify-content: flex-start;
            width: 65% !important;
            padding-right: 0.75rem;
            padding-left: 0; } }
        .line-items tr > td:last-child > div {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: flex-start; }
          @media (min-width: 576px) {
            .line-items tr > td:last-child > div {
              flex-direction: row;
              align-items: center; } }
          @media (min-width: 768px) {
            .line-items tr > td:last-child > div {
              justify-content: space-between; } }
          .line-items tr > td:last-child > div:last-child {
            justify-content: flex-start; }
            @media (min-width: 768px) {
              .line-items tr > td:last-child > div:last-child {
                justify-content: space-between; } }
          .line-items tr > td:last-child > div > a {
            margin: 0 0.5rem; }
            .line-items tr > td:last-child > div > a:first-child {
              margin: 0 0.5rem 0 0; }
          .line-items tr > td:last-child > div:first-child {
            margin: 0 0 2rem; }
        .line-items tr > td:last-child > a {
          width: 25%;
          height: 100%;
          display: block;
          margin: 0 1rem 0 0; }
          @media (min-width: 768px) {
            .line-items tr > td:last-child > a {
              width: 15%; } }
      .line-items tr > td .item-options {
        display: flex;
        flex-direction: row; }
        .line-items tr > td .item-options a {
          font-size: 0.875rem;
          color: #5a575d;
          font-weight: 400;
          display: flex;
          flex-direction: row;
          align-items: center; }
          .line-items tr > td .item-options a:hover, .line-items tr > td .item-options a:focus {
            color: #a47e30; }
          .line-items tr > td .item-options a svg {
            margin: 0 0.5rem 0 0; }
            .line-items tr > td .item-options a svg path {
              fill: currentcolor; }
        .line-items tr > td .item-options .drop-btn {
          display: inline;
          position: relative;
          right: auto;
          bottom: auto;
          left: auto;
          z-index: 1;
          margin: 0;
          width: auto; }
          .line-items tr > td .item-options .drop-btn > a svg {
            display: none; }
          .line-items tr > td .item-options .drop-btn > a:hover, .line-items tr > td .item-options .drop-btn > a:focus {
            cursor: pointer; }
          .line-items tr > td .item-options .drop-btn > a.is-open + ul {
            display: block; }
          .line-items tr > td .item-options .drop-btn ul {
            right: 0;
            left: auto !important;
            top: 100% !important;
            border-top: 0.125rem solid #231F20;
            width: 13.125rem; }
    .line-items tr + tr {
      border-top: none; }
  .line-items td {
    vertical-align: top;
    position: relative; }
    .line-items td > div {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-end;
      width: 100%;
      margin: 0 0 1.125rem; }
      .line-items td > div:last-child {
        margin: 0; }
  .line-items img {
    width: 100%;
    max-width: 10rem;
    height: auto; }
  .line-items .brand {
    display: none; }
  .line-items .title {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #5a575d;
    margin: 0 0 0.5rem; }
    @media (min-width: 768px) {
      .line-items .title {
        max-width: 250px; } }
    .line-items .title a {
      color: #5a575d;
      text-decoration: none;
      font-style: normal;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px; }
      .line-items .title a:hover, .line-items .title a:focus {
        color: #bbadaa;
        text-decoration: underline; }
  .line-items .price {
    margin: 1rem 0 0;
    text-align: center; }
    .line-items .price.price--discounted {
      text-decoration: line-through;
      color: #ef9662; }
    @media (min-width: 576px) {
      .line-items .price {
        margin: 0 0 0 1rem; } }
  .line-items .option {
    margin-top: 0.5rem; }
    .line-items .option span:last-child {
      font-weight: 600; }
    .line-items .option + .item-options {
      margin-top: 1.5rem; }
  .line-items .form-field.quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row nowrap;
    margin: 0; }
    .line-items .form-field.quantity .form-increment {
      margin: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: stretch;
      flex-flow: row nowrap; }
    .line-items .form-field.quantity input {
      width: 3rem;
      font-size: 1rem;
      font-weight: normal;
      text-align: center;
      padding: 0.3125rem;
      border: 0.0625rem solid #e3e3e3;
      background-color: rgba(0, 0, 0, 0.05); }
    .line-items .form-field.quantity .inc-minus, .line-items .form-field.quantity .inc-plus {
      position: relative;
      border: 0.0625rem solid #e3e3e3;
      border-radius: 0;
      width: 2.6875rem;
      height: 2.6875rem;
      background: #fff;
      transition: all .25s; }
      .line-items .form-field.quantity .inc-minus:before, .line-items .form-field.quantity .inc-minus:after, .line-items .form-field.quantity .inc-plus:before, .line-items .form-field.quantity .inc-plus:after {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        content: "";
        background: #5a575d; }
      .line-items .form-field.quantity .inc-minus:hover, .line-items .form-field.quantity .inc-minus:focus, .line-items .form-field.quantity .inc-plus:hover, .line-items .form-field.quantity .inc-plus:focus {
        background-color: #5a575d; }
        .line-items .form-field.quantity .inc-minus:hover:before, .line-items .form-field.quantity .inc-minus:hover:after, .line-items .form-field.quantity .inc-minus:focus:before, .line-items .form-field.quantity .inc-minus:focus:after, .line-items .form-field.quantity .inc-plus:hover:before, .line-items .form-field.quantity .inc-plus:hover:after, .line-items .form-field.quantity .inc-plus:focus:before, .line-items .form-field.quantity .inc-plus:focus:after {
          background: #fff; }
      .line-items .form-field.quantity .inc-minus:active, .line-items .form-field.quantity .inc-plus:active {
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), #5A575D; }
        .line-items .form-field.quantity .inc-minus:active:before, .line-items .form-field.quantity .inc-minus:active:after, .line-items .form-field.quantity .inc-plus:active:before, .line-items .form-field.quantity .inc-plus:active:after {
          background: #fff; }
    .line-items .form-field.quantity .inc-minus {
      border-right: none; }
      .line-items .form-field.quantity .inc-minus:before {
        height: 0.125rem;
        width: 0.75rem; }
      .line-items .form-field.quantity .inc-minus:after {
        display: none; }
    .line-items .form-field.quantity .inc-plus {
      border-left: none; }
      .line-items .form-field.quantity .inc-plus:before {
        height: 0.125rem;
        width: 0.75rem; }
      .line-items .form-field.quantity .inc-plus:after {
        width: 0.125rem;
        height: 0.75rem; }
  .line-items .cart-content-disclaimer {
    background: #E8EBED;
    border-radius: 4px;
    padding: 0.9375rem; }
    .line-items .cart-content-disclaimer ul li {
      text-align: left;
      padding: 0 0 0 12px; }
      .line-items .cart-content-disclaimer ul li:before {
        width: 4px;
        height: 4px;
        border-radius: 50%; }
      .line-items .cart-content-disclaimer ul li p {
        font-style: normal;
        font-weight: normal;
        font-size: 12px;
        line-height: 24px;
        text-transform: capitalize;
        color: #5a575d; }

.totals-wrap {
  border: 0.0625rem solid #e3e3e3;
  border-radius: 0;
  background: #fff;
  padding: 0; }
  .totals-wrap .disabled {
    pointer-events: none;
    opacity: .5; }
  .totals-wrap .order-summary-heading {
    padding: 1rem 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    font-family: 'Work Sans';
    line-height: 21px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #f6f6f6;
    border-radius: 0;
    border: 0.0625rem solid #e3e3e3;
    margin: -1px; }
    @media (min-width: 768px) {
      .totals-wrap .order-summary-heading {
        display: block; } }
  .totals-wrap .cart-additionalCheckoutButtons {
    padding-top: 0; }
    .totals-wrap .cart-additionalCheckoutButtons .paypalCommerce-buttons-container {
      text-align: center; }
    .totals-wrap .cart-additionalCheckoutButtons p {
      margin-bottom: 24px;
      text-align: center; }
  .totals-wrap > div {
    padding: 1rem; }
    @media (min-width: 768px) {
      .totals-wrap > div {
        padding: 1.5rem; } }
    .totals-wrap > div:last-of-type {
      padding-bottom: 1.5rem; }
    .totals-wrap > div:last-child {
      padding-top: 0; }
    .totals-wrap > div.cart-actions .btn-primary {
      padding-left: 1rem;
      padding-right: 1rem;
      height: 3.5rem;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center; }
      .totals-wrap > div.cart-actions .btn-primary svg {
        margin: -0.1875rem 0.625rem 0 0; }
  .totals-wrap ul li {
    padding: 0; }
    .totals-wrap ul li:before {
      display: none; }
  .totals-wrap dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-flow: row wrap;
    margin: 0; }
    @media (min-width: 768px) {
      .totals-wrap dl {
        margin: 0; } }
    @media (min-width: 992px) {
      .totals-wrap dl {
        margin: 0; } }
    .totals-wrap dl dt, .totals-wrap dl dd {
      margin: 1rem 0 0;
      font-style: normal;
      font-weight: 400;
      font-size: 1rem;
      line-height: 1.5rem;
      -webkit-box-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto; }
      .totals-wrap dl dt:nth-of-type(n + 4), .totals-wrap dl dd:nth-of-type(n + 4) {
        margin: 1.5rem 0 0;
        padding: 1rem 0 0;
        border-top: 0.0625rem solid #e3e3e3; }
        @media (min-width: 768px) {
          .totals-wrap dl dt:nth-of-type(n + 4), .totals-wrap dl dd:nth-of-type(n + 4) {
            padding: 1.5rem 0 0; } }
      .totals-wrap dl dt:first-of-type, .totals-wrap dl dd:first-of-type {
        margin: 0.5rem 0 0; }
      .totals-wrap dl dt:last-of-type, .totals-wrap dl dd:last-of-type {
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 500; }
      .totals-wrap dl dt.cart-form, .totals-wrap dl dt.cart-toggle, .totals-wrap dl dd.cart-form, .totals-wrap dl dd.cart-toggle {
        width: 100%;
        text-align: left;
        border-top: none;
        padding: 0; }
      .totals-wrap dl dt button.toggle.shipping-estimate-show, .totals-wrap dl dd button.toggle.shipping-estimate-show {
        color: #a57d2c;
        font-weight: 500;
        font-size: 0.9375rem;
        line-height: 1.5rem;
        text-transform: uppercase;
        border-bottom: 0.0625rem solid #e3e3e3;
        padding: .25em 0;
        transition: all .25s; }
        .totals-wrap dl dt button.toggle.shipping-estimate-show:hover, .totals-wrap dl dt button.toggle.shipping-estimate-show:focus, .totals-wrap dl dd button.toggle.shipping-estimate-show:hover, .totals-wrap dl dd button.toggle.shipping-estimate-show:focus {
          border-bottom-color: #a57d2c; }
      .totals-wrap dl dt.cart-form-promo, .totals-wrap dl dd.cart-form-promo {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between; }
        .totals-wrap dl dt.cart-form-promo button[class*="coupon-code-"], .totals-wrap dl dd.cart-form-promo button[class*="coupon-code-"] {
          color: #a57d2c;
          font-weight: 500;
          font-size: 0.9375rem;
          line-height: 1.5rem;
          text-transform: uppercase;
          border-bottom: 0.0625rem solid #e3e3e3;
          padding: .25em 0;
          transition: all .25s; }
          .totals-wrap dl dt.cart-form-promo button[class*="coupon-code-"]:hover, .totals-wrap dl dt.cart-form-promo button[class*="coupon-code-"]:focus, .totals-wrap dl dd.cart-form-promo button[class*="coupon-code-"]:hover, .totals-wrap dl dd.cart-form-promo button[class*="coupon-code-"]:focus {
            border-bottom-color: #a57d2c; }
    .totals-wrap dl dt {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      align-content: flex-start;
      flex-flow: row wrap; }
      .totals-wrap dl dt span:first-child {
        margin-right: 1rem; }
    .totals-wrap dl dd {
      width: 25%;
      text-align: right; }
  .totals-wrap [class*="btn-"] {
    width: 100%; }
  .totals-wrap .form input, .totals-wrap .form textarea, .totals-wrap .form select {
    border-radius: 0;
    border: 1px solid #e3e3e3;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #5a575d;
    margin-bottom: 0.25rem;
    display: block;
    padding: 14px 20px;
    width: 100%;
    margin: 0.5rem 0 1rem; }
    .totals-wrap .form input::placeholder, .totals-wrap .form textarea::placeholder, .totals-wrap .form select::placeholder {
      color: #bbadaa; }
  .totals-wrap .form label {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3E3F49;
    font-weight: 700;
    display: block; }
  .totals-wrap .form select {
    appearance: none;
    -webkit-appearance: none;
    background: url(../img/dropdown-caret.png) no-repeat 94.5% 50%/16px; }
  .totals-wrap .coupon-code-add, .totals-wrap .coupon-code-cancel {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #eab444; }
  .totals-wrap .u-hiddenVisually {
    display: none; }
  .totals-wrap .btn-txt {
    color: #eacb86;
    justify-content: flex-start;
    margin: 0; }
    .totals-wrap .btn-txt:hover, .totals-wrap .btn-txt:focus {
      color: #eacb86; }
  .totals-wrap .shipping-quotes form {
    margin: 1.5rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 0.0625rem solid #5a575d; }
  .totals-wrap .shipping-quotes .form-cr label {
    width: 100%; }
  .totals-wrap .shipping-quotes .form-cr strong {
    float: right;
    text-align: right; }
  .totals-wrap .toggle {
    border-bottom: 0.0625rem solid #e3e3e3;
    padding: .25em 0;
    line-height: 1;
    transition: all .25s;
    color: #a57d2c; }
    .totals-wrap .toggle:hover, .totals-wrap .toggle:focus {
      border-bottom-color: #a57d2c; }
  .totals-wrap .paypal-smart-buttons {
    width: 100%;
    margin: 1rem 0 0; }

/*  --------------------------------------------------------------------------  *\

    ACCOUNT COMPONENTS

    Account components are used throughout the My Account section of the 
    solution.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    FEED - ORDERS

\*  --------------------------------------------------------------------------  */
.f-orders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-flow: row wrap;
  margin: 0 -0.75rem 1.5rem; }
  .f-orders .card {
    width: calc(90% - 1.5rem);
    margin: 0 auto;
    overflow: visible; }
    .f-orders .card .cnt {
      overflow: visible; }
      .f-orders .card .cnt .status {
        color: #eab444;
        font-weight: 600; }
      .f-orders .card .cnt .totaling {
        margin: 0 0 0.875rem; }
    .f-orders .card:nth-child(n + 6) {
      margin-top: 1.5rem; }
  @media (min-width: 768px) {
    .f-orders .card {
      width: calc(50% - 1.5rem);
      margin: 0 0.75rem; }
      .f-orders .card .cnt {
        margin-top: 0.875rem; }
      .f-orders .card:nth-child(6) {
        margin-top: 1.5rem; } }
  @media (min-width: 992px) {
    .f-orders {
      margin: 0 -0.9375rem 2rem; }
      .f-orders .card {
        width: calc(33.33% - 1.5rem); }
        .f-orders .card h3 {
          font-size: 1.125rem;
          margin-bottom: 1rem; }
        .f-orders .card h4 {
          font-size: 1rem;
          margin: 0 0 0.25rem; }
        .f-orders .card:nth-child(6) {
          margin-top: 0; }
        .f-orders .card:nth-child(n + 8) {
          margin-top: 1.5rem; } }
  .f-orders input[type="checkbox"] {
    position: absolute;
    width: 1px !important;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0); }
    .f-orders input[type="checkbox"]:checked + .card {
      border-color: #eacb86;
      background: #eacb86; }
      .f-orders input[type="checkbox"]:checked + .card .cnt {
        color: #fff; }
        .f-orders input[type="checkbox"]:checked + .card .cnt:after {
          background: #eacb86; }
      .f-orders input[type="checkbox"]:checked + .card .price, .f-orders input[type="checkbox"]:checked + .card h3 {
        color: #fff; }

@media (max-width: 767.9px) {
  .account_orderstatus .pagination {
    display: none; } }

.account_orderstatus h4 {
  min-height: 2.5rem; }
  @media (min-width: 1425px) {
    .account_orderstatus h4 {
      min-height: none; } }

/*  --------------------------------------------------------------------------  *\

    FEED - ORDERS

\*  --------------------------------------------------------------------------  */
.order-details-info .btn-secondary {
  margin-top: 0.625rem; }

.mimic-cart {
  border-bottom: 0.0625rem solid #a57d2c; }
  .mimic-cart li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: row nowrap;
    padding: 2rem 1rem 2rem 0;
    border-top: 0.0625rem solid #5a575d; }
    .mimic-cart li:before {
      display: none; }
  .mimic-cart label {
    cursor: pointer; }
  .mimic-cart .form-cr .form-checkbox + label:before {
    background-color: #fff;
    border-width: 1px;
    box-shadow: none;
    height: 1.23077rem;
    left: 0;
    top: 0;
    width: 1.23077rem;
    border-radius: 4px; }
  .mimic-cart .form-cr .form-checkbox + label:after {
    display: block;
    position: absolute;
    transition: all 50ms ease-out;
    height: 0.92308rem;
    left: 3px;
    top: 3px;
    width: 0.92308rem;
    background-image: url("data:image/svg+xml;utf8, %3Csvg%20width%3D%2212%22%20height%3D%2211%22%20viewBox%3D%220%200%2012%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3Cfilter%20x%3D%22-50%25%22%20y%3D%22-50%25%22%20width%3D%22200%25%22%20height%3D%22200%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22a%22%3E%3CfeOffset%20dy%3D%221%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowOffsetOuter1%22%2F%3E%3CfeGaussianBlur%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%2F%3E%3CfeColorMatrix%20values%3D%220%200%200%200%200.137254902%200%200%200%200%200.505882353%200%200%200%200%200.870588235%200%200%200%200.7%200%22%20in%3D%22shadowBlurOuter1%22%20result%3D%22shadowMatrixOuter1%22%2F%3E%3CfeMerge%3E%3CfeMergeNode%20in%3D%22shadowMatrixOuter1%22%2F%3E%3CfeMergeNode%20in%3D%22SourceGraphic%22%2F%3E%3C%2FfeMerge%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M612.138%202935.716c-1.964%202.295-3.942%204.556-5.92%206.833-.098.115-.194.215-.29.33-.146.168-.42.15-.564%200-.998-.98-1.996-1.977-2.993-2.958-.37-.366.194-.965.564-.582.9.88%201.786%201.762%202.687%202.66%201.997-2.294%203.975-4.57%205.955-6.866.353-.4.916.183.563.582z%22%20transform%3D%22translate(-601%20-2934)%22%20stroke%3D%22%23FFF%22%20filter%3D%22url(%23a)%22%20stroke-width%3D%22.3%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    color: #4496f6;
    content: "";
    font-size: 0.92308rem;
    line-height: 1;
    text-align: center;
    border: none;
    opacity: 0;
    transform: scale(1); }
  .mimic-cart .form-cr .form-checkbox:checked + label:before {
    background-color: #eab444;
    border-color: #eab444; }
  .mimic-cart .form-cr .form-checkbox:checked + label:after {
    opacity: 1;
    transform: scale(1); }
  .mimic-cart .img-w {
    width: 25%;
    padding: 0 1rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: 0;
    align-items: 0;
    align-content: auto;
    flex-flow: row wrap; }
    .mimic-cart .img-w img {
      max-width: 10rem;
      width: 100%;
      height: auto; }
  .mimic-cart .cnt {
    width: 100%;
    -webkit-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .mimic-cart .form-cr {
    margin: 0 1rem 0 0;
    width: 1.125rem;
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  --------------------------------------------------------------------------  *\

    ACCOUNT > INBOX

\*  --------------------------------------------------------------------------  */
.inbox {
  border-bottom: 0.0625rem solid #ef9662; }
  .inbox li {
    padding: 2rem 0;
    border-top: 0.0625rem solid #ef9662; }
    .inbox li:before {
      display: none; }
    .inbox li :last-child {
      margin: 0; }
  .inbox .h4 {
    text-transform: none; }
  .inbox .date {
    margin: 0 0 0.25rem; }

/*  --------------------------------------------------------------------------  *\

    ACCOUNT - ADDRESSES

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    ACCOUNT - ADDRESSES - LIST

\*  --------------------------------------------------------------------------  */
.addresses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-flow: row wrap;
  margin: 0 -0.75rem; }
  .addresses .card {
    width: calc(100% - 1.5rem);
    margin: 0 0.75rem;
    text-align: center; }
    .addresses .card .cnt {
      padding: 1rem; }
    .addresses .card:nth-child(n + 3) {
      margin-top: 1.5rem; }
    .addresses .card p:last-of-type {
      margin-bottom: 1rem; }
  .addresses .form-actions {
    text-align: center;
    justify-content: center; }
  .addresses > .btn-primary {
    margin: 2rem 2.9375rem 0; }
  @media (min-width: 768px) {
    .addresses {
      margin: 0 -1rem; }
      .addresses .card {
        width: calc(50% - 2rem);
        margin: 0 1rem; }
        .addresses .card:nth-child(3) {
          margin-top: 0; }
        .addresses .card:nth-child(n + 4) {
          margin-top: 1.5rem; }
        .addresses .card p:last-of-type {
          margin-bottom: 1.5rem; }
      .addresses > .btn-primary {
        justify-content: center;
        flex-flow: column nowrap;
        width: calc(50% - 2rem);
        margin: 0 auto;
        border-radius: 0.5rem; }
        .addresses > .btn-primary svg {
          display: block;
          width: 3rem;
          height: 3rem;
          margin: 0 auto 1.5rem;
          stroke: #fff;
          stroke-width: 0.125rem;
          stroke-linecap: round; } }
  @media (min-width: 992px) {
    .addresses .card {
      width: calc(25%); }
      .addresses .card:nth-child(4) {
        margin-top: 0; }
      .addresses .card:nth-child(n + 5) {
        margin-top: 1.5rem; }
      .addresses .card h3 {
        font-size: 1.125rem; }
      .addresses .card .form-btns {
        display: flex;
        justify-content: center; }
    .addresses > .btn-primary {
      width: calc(25% - 2rem);
      margin: 0 1rem; } }

/*  --------------------------------------------------------------------------  *\

    ACCOUNT - ADDRESSES - FORM

\*  --------------------------------------------------------------------------  */
@media (min-width: 768px) {
  .form-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: row wrap; }
    .form-address .form-el {
      width: calc(50% - 1rem); }
      .form-address .form-el[data-type*="Address"] {
        width: 100%; } }

/*  --------------------------------------------------------------------------  *\

    ACCOUNT - FORM

\*  --------------------------------------------------------------------------  */
.form-account .g-recaptcha {
  width: 100%;
  margin-top: 2rem; }
  .form-account .g-recaptcha > div {
    margin: 0 auto; }

@media (min-width: 768px) {
  .form-account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: row wrap; }
    .form-account h2 {
      width: 100%; }
      .form-account h2 ~ h2 {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid #e3e3e3; }
    .form-account .form-el {
      width: calc(50% - 1rem); }
      .form-account .form-el[data-type*="Address"] {
        width: 100%; } }

/*  --------------------------------------------------------------------------  *\

    ACCOUNT - WISHLISTS - TABLE

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    ACCOUNT - WISHLISTS - TABLE

\*  --------------------------------------------------------------------------  */
table.table-wishlists td {
  border-color: #f6f6f6; }

table.table-wishlists th {
  text-align: left; }

table.table-wishlists tr:nth-of-type(even) td {
  background: #f6f6f6; }

/*  --------------------------------------------------------------------------  *\

    ACCOUNT - WISHLISTS - ITEMS

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    ACCOUNT - WISHLISTS - DETAILS

\*  --------------------------------------------------------------------------  */
.footer-wishlist {
  margin: 1.5rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 0.0625rem solid #bbadaa;
  width: 100%; }
  @media (min-width: 768px) {
    .footer-wishlist {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-flow: row nowrap; }
      .footer-wishlist nav {
        width: auto; } }

/*  --------------------------------------------------------------------------  *\

    ACCOUNT - WISHLISTS - FORM

\*  --------------------------------------------------------------------------  */
.form-wishlist {
  max-width: 36.5rem; }

.add-wishlist .container form .form-btns {
  justify-content: start; }

.add-wishlist label[for="publicwishlist"]::after {
  left: 0.5625rem !important;
  top: 0.5625rem !important; }

.modal-wishlist {
  background-color: white;
  border: solid 0 #e5e5e5;
  border-radius: 0;
  box-shadow: none;
  display: none;
  position: absolute;
  left: 50%;
  top: 50% !important;
  transform: translate(-50%, -50%);
  margin: 0 !important;
  min-height: 240px;
  max-height: 90%;
  max-width: 95%;
  max-height: 80%;
  outline: none;
  overflow: visible;
  padding: 0;
  position: fixed;
  visibility: hidden;
  width: 100%;
  z-index: 10005; }
  .modal-wishlist .modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 2.25rem;
    position: relative; }
  .modal-wishlist .modal-header-title {
    font-size: 2rem;
    margin: 0;
    text-align: center; }
  .modal-wishlist .modal-close {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    height: 3.75rem;
    width: 3.75rem;
    color: #757575;
    font-size: 3rem;
    line-height: 3.75rem;
    padding: 0;
    position: absolute;
    top: 0;
    right: -3.75rem;
    text-align: center;
    text-decoration: none;
    z-index: 50;
    transform: translate(-50%, -50%); }
  .modal-wishlist .modal-body {
    overflow: auto;
    padding: 2rem 2rem; }
  .modal-wishlist .share-wishlist {
    margin-left: auto;
    margin-right: auto;
    text-align: center; }
  .modal-wishlist .form-input[readonly] {
    background-color: #e5e5e5;
    border-color: #999999;
    color: #757575;
    cursor: text;
    padding: 0.75rem 1rem;
    width: 100%; }
  @media (min-width: 551px) {
    .modal-wishlist {
      max-width: 900px !important; } }

/*  --------------------------------------------------------------------------  *\

    ACCOUNT - PAYMENT-METHODS - FORM

\*  --------------------------------------------------------------------------  */
.form-payment-methods h2 {
  width: 100%;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 0.3125rem;
  text-align: left;
  text-transform: capitalize;
  font-size: 1.5rem; }

.form-payment-methods p {
  width: 100%; }

.form-payment-methods .form-cr {
  margin-bottom: 1.875rem; }
  .form-payment-methods .form-cr input[type="checkbox"] + label:after {
    top: .65rem;
    left: .55rem; }
    @media (min-width: 1200px) {
      .form-payment-methods .form-cr input[type="checkbox"] + label:after {
        left: .6rem; } }

.form-payment-methods .paymentMethodForm-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap; }
  .form-payment-methods .paymentMethodForm-cards img {
    width: 2.8125rem;
    margin: 0.3125rem; }

@media (min-width: 768px) {
  .form-payment-methods {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: row wrap; }
    .form-payment-methods .form-el {
      width: calc(50% - 1rem); }
      .form-payment-methods .form-el[data-type*="Address"] {
        width: 100%; } }

/*  --------------------------------------------------------------------------  *\

    ACCOUNT - PAYMENT METHODS - LIST

\*  --------------------------------------------------------------------------  */
.payment-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-flow: row wrap;
  margin: 0 -0.75rem; }
  .payment-methods .card {
    width: calc(100% - 1.5rem);
    margin: 0 0.75rem;
    text-align: center; }
    .payment-methods .card .cnt {
      padding: 1rem; }
    .payment-methods .card:nth-child(n + 3) {
      margin-top: 1.5rem; }
  .payment-methods .form-actions {
    text-align: center;
    justify-content: center; }
  @media (min-width: 768px) {
    .payment-methods {
      margin: 0 -1rem; }
      .payment-methods .card {
        width: calc(50% - 2rem);
        margin: 0 1rem; }
        .payment-methods .card:nth-child(3) {
          margin-top: 0; }
        .payment-methods .card:nth-child(n + 4) {
          margin-top: 1.5rem; }
      .payment-methods > .btn-primary {
        justify-content: center;
        flex-flow: column nowrap;
        width: calc(50% - 2rem);
        margin: 0 auto;
        border-radius: 0.5rem; }
        .payment-methods > .btn-primary svg {
          display: block;
          width: 3rem;
          height: 3rem;
          margin: 0 auto 1.5rem;
          stroke: #fff;
          stroke-width: 0.125rem;
          stroke-linecap: round; } }
  @media (min-width: 992px) {
    .payment-methods .card {
      width: calc(25%); }
      .payment-methods .card:nth-child(4) {
        margin-top: 0; }
      .payment-methods .card:nth-child(n + 5) {
        margin-top: 1.5rem; }
      .payment-methods .card h3 {
        font-size: 1.125rem; }
    .payment-methods > .btn-primary {
      width: calc(25% - 2rem);
      margin: 0 1rem; } }

@media (max-width: 991.9px) {
  .newPaymentMethod {
    width: auto; } }

/*  --------------------------------------------------------------------------  *\

    THIRD PARTY PLUGINS

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    THIRD PARTY PLUGINS > REZKU

    Reservation system

\*  --------------------------------------------------------------------------  */
.rezku-wrap iframe {
  display: block;
  float: right;
  border-radius: 1.25rem; }

/*  --------------------------------------------------------------------------  *\

    THIRD PARTY PLUGINS > GOOGLE MAPS

\*  --------------------------------------------------------------------------  */
.map {
  position: relative;
  padding: 40% 0 0; }
  @media (min-width: 768px) {
    .map {
      padding: 27% 0 0; } }
  @media (min-width: 1425px) {
    .map {
      padding: 0;
      height: 350px; } }
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

/*  --------------------------------------------------------------------------  *\

    THIRD PARTY PLUGINS > BorderFree

\*  --------------------------------------------------------------------------  */
div.bfx-wm-dialog {
  overflow-y: initial; }

#bfx-wm-sellpoints ul li:before {
  background: initial; }

/*  --------------------------------------------------------------------------  *\

    ALERTS

\*  --------------------------------------------------------------------------  */
.alert {
  margin: 1rem 0;
  background: #f6f6f6;
  border: 0.0625rem solid #e3e3e3;
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #bbadaa; }
  .alert :last-child, .alert:last-child {
    margin-bottom: 0; }
  .alert .container {
    text-align: center; }
  .alert.admin-bar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap; }
    .alert.admin-bar .container a, .alert.admin-bar .container div {
      color: #fff;
      margin: 0 0.5rem; }
  .alert.admin-bar svg {
    width: 1.875rem;
    height: 1.5rem;
    fill: #fff; }

.maintenanceNotice {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  color: #333;
  left: 0;
  padding: 0.5rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10001; }
  .maintenanceNotice > :last-child {
    margin-bottom: 0; }
  .maintenanceNotice a {
    color: #3E67F8; }

body.hasAdminBar {
  padding-bottom: 46px; }

.adminBar {
  display: none;
  background-color: #333;
  box-shadow: 0 0.125rem 0.4375rem 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  height: 2.875rem;
  left: 0;
  position: fixed;
  text-decoration: none;
  bottom: 0;
  width: 100%;
  z-index: 10001; }
  @media (min-width: 768px) {
    .adminBar {
      display: block; } }
  .adminBar .svg-icon {
    display: inline-flex;
    align-self: center; }
  .adminBar .svg-icon svg {
    height: 1em;
    width: 1em; }
  .adminBar .svg-icon.svg-baseline svg {
    top: .125em;
    position: relative; }
  .adminBar .adminBar-content {
    width: calc(100% - 45px);
    flex: 0 0 auto; }
  .adminBar .adminBar-content, .adminBar .adminBar-private, .adminBar .container {
    align-items: center;
    display: flex;
    height: 2.875rem;
    justify-content: flex-start; }
    .adminBar .adminBar-content a, .adminBar .adminBar-private a, .adminBar .container a {
      color: #fff;
      text-decoration: none; }
    .adminBar .adminBar-content a:hover, .adminBar .adminBar-private a:hover, .adminBar .container a:hover {
      background-color: #fff;
      color: #3E67F8;
      border-radius: 5px; }

.adminBar-logo {
  float: left;
  height: 2.875rem;
  width: 45px; }
  .adminBar-logo svg {
    height: 100%;
    padding: 0.5rem;
    width: 100%; }

.adminBar-private {
  margin-right: auto;
  text-align: left; }
  .adminBar-private a {
    padding: 10px; }
  .adminBar-private span {
    white-space: nowrap; }

.adminBar-links {
  margin-left: auto;
  text-align: right;
  padding-right: 5px; }
  .adminBar-links a {
    padding: 10px; }
  .adminBar-links span {
    white-space: nowrap; }

.adminBar-large {
  display: none; }
  @media (min-width: 992px) {
    .adminBar-large {
      display: initial; } }

.preview {
  font-weight: 400;
  padding-left: 9px; }

/*  --------------------------------------------------------------------------  *\
    CART COMPONENTS
\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    CART - ACTIONS

\*  --------------------------------------------------------------------------  */
.cart-aside {
  background: #f4f4ed;
  padding: 1.5rem 1rem; }
  @media (min-width: 768px) {
    .cart-aside {
      position: sticky;
      top: 5rem; } }
  @media (min-width: 992px) {
    .cart-aside {
      top: 8.75rem; } }
  @media (min-width: 992px) {
    .cart-aside {
      padding: 2.5rem; } }
  .cart-aside h2 {
    text-align: left; }
  .cart-aside .cart-actions .btn-primary {
    width: 100%; }
  .cart-aside .desktop-only {
    display: none; }
    @media (min-width: 992px) {
      .cart-aside .desktop-only {
        display: inline-block;
        margin: 0 4px; } }
  .cart-aside .icon-grid {
    display: grid;
    grid-template-columns: 1.375rem auto;
    column-gap: 1rem;
    border-top: 1px solid #b9b9ad;
    padding-top: 1.5rem;
    margin-top: 1.5rem; }
    .cart-aside .icon-grid p {
      text-transform: capitalize;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.5;
      margin: 0 0 0.5rem; }
    .cart-aside .icon-grid span {
      font-size: 1.375rem;
      color: #626b61; }
      .cart-aside .icon-grid span.icon-thumbs-up {
        font-size: 1.125rem; }

/*  --------------------------------------------------------------------------  *\

    CART - LAYOUT

\*  --------------------------------------------------------------------------  */
.cart h1 {
  text-align: left;
  margin-top: 1.5rem; }
  @media (min-width: 768px) {
    .cart h1 {
      margin-top: 0; } }

.cart > .container {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  row-gap: 0; }
  @media (min-width: 768px) {
    .cart > .container {
      grid-template-rows: auto auto 100%;
      column-gap: 2.5rem; } }

.cart .free-shipping-box p {
  text-align: center; }

.cart .free-shipping-box > div {
  padding: 1rem 1.5rem; }

@media (min-width: 768px) {
  .cart aside {
    align-self: start; } }

.cart .or-use-label {
  margin-bottom: 0;
  margin-top: 0.5rem; }

/*  --------------------------------------------------------------------------  *\

    CART - LINE ITEMS

\*  --------------------------------------------------------------------------  */
.price--discounted {
  color: #b9b9ad;
  text-decoration: 1px #b9b9ad line-through;
  margin-right: 0.5rem; }

.cart-dropdown .line-items {
  /*  --------------------------------------------------------------------------  *\

    CART - LINE ITEMS LAYOUT

\*  --------------------------------------------------------------------------  */ }
  .cart-dropdown .line-items tr {
    display: grid;
    grid-template-rows: auto 1fr auto;
    border-bottom: 1px solid #b9b9ad;
    border-radius: 0.25rem;
    padding: 1.5rem 0;
    grid-template-columns: 1fr 2fr;
    grid-template-areas: 'image name remove'  'image price remove' 'image options remove' 'image quantity remove' 'image total remove';
    column-gap: 1rem; }
    @media (min-width: 992px) {
      .cart-dropdown .line-items tr {
        grid-template-columns: 20% auto;
        grid-template-areas: 'image name remove'  'image price remove' 'image options options' 'image quantity total'; } }
    .cart-dropdown .line-items tr.no-options {
      grid-template-rows: auto auto;
      grid-template-areas: 'image name remove'  'image price remove' 'image quantity remove' 'image total remove' 'image .  .'; }
      @media (min-width: 992px) {
        .cart-dropdown .line-items tr.no-options {
          grid-template-areas: 'image name remove'  'image price remove' 'image options remove' 'image quantity total' 'image . .'; } }
    @media (min-width: 992px) {
      .cart-dropdown .line-items tr {
        column-gap: 2.5rem; } }
    .cart-dropdown .line-items tr .line-item-image {
      grid-area: image; }
    .cart-dropdown .line-items tr .line-item-name {
      grid-area: name;
      margin-bottom: 1rem; }
    .cart-dropdown .line-items tr .line-item-price {
      grid-area: price;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-flow: row nowrap; }
    .cart-dropdown .line-items tr .line-item-increment {
      grid-area: quantity;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-flow: row nowrap;
      margin-bottom: 1rem;
      margin-top: 1rem; }
    .cart-dropdown .line-items tr .line-item-options {
      margin-top: 0.25rem;
      grid-area: options; }
    .cart-dropdown .line-items tr .line-item-subtotal {
      grid-area: total;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-flow: row nowrap; }
      @media (min-width: 992px) {
        .cart-dropdown .line-items tr .line-item-subtotal {
          justify-content: flex-end; } }
    .cart-dropdown .line-items tr .line-item-remove {
      grid-area: remove;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: flex-end;
      align-items: flex-start;
      flex-flow: row nowrap; }
      .cart-dropdown .line-items tr .line-item-remove:empty {
        display: none; }
  .cart-dropdown .line-items .line-item-remove button {
    border-radius: 100%;
    width: 1.5rem;
    height: 1.5rem; }
    .cart-dropdown .line-items .line-item-remove button span {
      position: relative;
      right: 0;
      top: 0px;
      font-size: 1rem;
      color: #393939;
      margin: 0; }
  .cart-dropdown .line-items .line-item-name small {
    font-weight: 300;
    font-size: 0.625rem;
    line-height: 1.125rem;
    display: block; }
    @media (min-width: 992px) {
      .cart-dropdown .line-items .line-item-name small {
        font-size: 0.75rem; } }
  .cart-dropdown .line-items .line-item-name a {
    text-decoration: none;
    color: #393939; }
    .cart-dropdown .line-items .line-item-name a:hover, .cart-dropdown .line-items .line-item-name a:focus {
      text-decoration: underline;
      color: #686868; }
    @media (min-width: 992px) {
      .cart-dropdown .line-items .line-item-name a {
        font-weight: 500;
        font-size: 1.125rem;
        line-height: 1.5; } }
  .cart-dropdown .line-items .cart-item-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain; }
  .cart-dropdown .line-items .line-item-subtotal h3, .cart-dropdown .line-items .line-item-subtotal span {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px; }
  .cart-dropdown .line-items .line-item-subtotal h3, .cart-dropdown .line-items .line-item-subtotal .h3 {
    margin: 0 0.5rem 0 0; }
  .cart-dropdown .line-items .line-item-price span {
    font-size: 0.875rem; }
    @media (min-width: 992px) {
      .cart-dropdown .line-items .line-item-price span {
        font-size: 1.125rem; } }
  .cart-dropdown .line-items .line-item-options dl {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    justify-content: start; }
    @media (min-width: 992px) {
      .cart-dropdown .line-items .line-item-options dl {
        grid-template-columns: auto auto auto auto; } }
  .cart-dropdown .line-items .line-item-options dd, .cart-dropdown .line-items .line-item-options dt {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400; }
  .cart-dropdown .line-items .line-item-options dt {
    color: #686868;
    font-weight: bold; }
  .cart-dropdown .line-items .line-item-options dd {
    padding-bottom: 0.625rem; }
  .cart-dropdown .line-items .line-item-options .btn-txt {
    justify-content: flex-start;
    text-transform: capitalize;
    letter-spacing: 0.01em; }
    .cart-dropdown .line-items .line-item-options .btn-txt .icon-pencil {
      margin-left: 0.5rem; }
  .cart-dropdown .line-items table {
    width: 100%;
    font-size: 1rem;
    margin: 0 0 1.5rem; }
    @media (min-width: 992px) {
      .cart-dropdown .line-items table {
        margin: 0 0 2.5rem; } }
  .cart-dropdown .line-items table, .cart-dropdown .line-items tbody {
    display: block; }
  .cart-dropdown .line-items thead {
    display: none;
    border: 2px solid fuchsia; }
  .cart-dropdown .line-items .form-increment {
    margin: 0; }
  .cart-dropdown .line-items .btn-secondary {
    width: 100%;
    margin-bottom: 1.25rem; }
    @media (min-width: 992px) {
      .cart-dropdown .line-items .btn-secondary {
        width: auto; } }

/*  --------------------------------------------------------------------------  *\

    CART - MODAL - CHANGES

\*  --------------------------------------------------------------------------  */
#CartEditProductFieldsForm {
  max-width: 30rem;
  /*  --------------------------------------------------------------------------  *\

    CATALOG - DETAIL - HEADER - FORM ELEMENTS - RECTANGLE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    CATALOG - DETAIL - HEADER - FORM ELEMENTS - TEXTAREA

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    CATALOG - DETAIL - HEADER - FORM ELEMENTS - PICK LIST

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    PDP - FORM ELEMENTS

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    CATALOG - DETAIL - HEADER - FORM ELEMENTS - SET RADIO

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    CATALOG - DETAIL - HEADER - FORM ELEMENTS - SET SELECT

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    CATALOG - DETAIL - HEADER - FORM ELEMENTS - RECTANGLE

\*  --------------------------------------------------------------------------  */
  /*  --------------------------------------------------------------------------  *\

    CATALOG - DETAIL - HEADER - FORM ELEMENTS - RECTANGLE

\*  --------------------------------------------------------------------------  */ }
  #CartEditProductFieldsForm .set-swatch {
    margin-bottom: 1.125rem; }
    #CartEditProductFieldsForm .set-swatch label {
      font-weight: 500; }
      #CartEditProductFieldsForm .set-swatch label span {
        color: #626b61; }
    #CartEditProductFieldsForm .set-swatch .options {
      position: relative;
      top: -0.1875rem;
      left: -0.1875rem; }
      #CartEditProductFieldsForm .set-swatch .options label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-flow: row nowrap;
        width: 1.875rem;
        height: 1.875rem;
        margin: 0 0.25rem 0.25rem 0;
        border: 3px solid transparent; }
        #CartEditProductFieldsForm .set-swatch .options label > span {
          transform: rotate(45deg);
          border-radius: 100%;
          width: 100%; }
        #CartEditProductFieldsForm .set-swatch .options label .color-group {
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: space-between;
          align-items: stretch;
          flex-flow: row nowrap;
          overflow: hidden; }
          #CartEditProductFieldsForm .set-swatch .options label .color-group span {
            width: 100%; }
        #CartEditProductFieldsForm .set-swatch .options label::before {
          content: "";
          position: absolute;
          border-radius: 100%;
          width: 1.875rem;
          height: 1.875rem;
          transform: translateY(-4px) translateX(-4px); }
        #CartEditProductFieldsForm .set-swatch .options label.unavailable {
          position: relative; }
          #CartEditProductFieldsForm .set-swatch .options label.unavailable span {
            opacity: .1; }
          #CartEditProductFieldsForm .set-swatch .options label.unavailable::after {
            border-top: 1px solid #b9b9ad;
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: -45%;
            transform: rotate(-45deg);
            transform-origin: 100% 0; }
          #CartEditProductFieldsForm .set-swatch .options label.unavailable:hover, #CartEditProductFieldsForm .set-swatch .options label.unavailable:focus {
            cursor: not-allowed; }
        #CartEditProductFieldsForm .set-swatch .options label:hover, #CartEditProductFieldsForm .set-swatch .options label:focus {
          cursor: pointer;
          transition: none; }
          #CartEditProductFieldsForm .set-swatch .options label:hover::before, #CartEditProductFieldsForm .set-swatch .options label:focus::before {
            border: 1px dashed #686868; }
      #CartEditProductFieldsForm .set-swatch .options label.pattern {
        border-radius: 0;
        width: 3.125rem;
        height: 3.125rem; }
        #CartEditProductFieldsForm .set-swatch .options label.pattern span {
          background-size: cover; }
        #CartEditProductFieldsForm .set-swatch .options label.pattern > span {
          transform: rotate(0deg);
          border-radius: 100%;
          width: 100%; }
        #CartEditProductFieldsForm .set-swatch .options label.pattern::before {
          content: "";
          position: absolute;
          width: 3.125rem;
          height: 3.125rem;
          transform: translateY(-4px) translateX(-4px); }
        #CartEditProductFieldsForm .set-swatch .options label.pattern .form-option-expanded {
          display: none; }
      #CartEditProductFieldsForm .set-swatch .options input {
        position: absolute;
        width: 1px !important;
        height: 1px;
        padding: 0;
        margin: -1px;
        border: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0); }
        #CartEditProductFieldsForm .set-swatch .options input:checked + label::before {
          border: 1px solid #393939; }
        #CartEditProductFieldsForm .set-swatch .options input:checked + label.unavailable::before {
          border: 1px solid #e4e4cf; }
  #CartEditProductFieldsForm .productOptions-list {
    border: 1px solid #b9b9ad; }
    #CartEditProductFieldsForm .productOptions-list li {
      margin: 0; }
    #CartEditProductFieldsForm .productOptions-list input {
      width: auto; }
    #CartEditProductFieldsForm .productOptions-list img {
      aspect-ratio: 1;
      max-width: 3.75rem;
      display: block;
      width: 100%;
      object-fit: cover; }
    #CartEditProductFieldsForm .productOptions-list .productOptions-list-item {
      padding: 0.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.25rem; }
      #CartEditProductFieldsForm .productOptions-list .productOptions-list-item + .productOptions-list-item {
        border-top: 1px solid #e4e4cf; }
    #CartEditProductFieldsForm .productOptions-list .productOptions-list-item-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      gap: 1.25rem; }
  #CartEditProductFieldsForm #prodd #product-list-label {
    font-weight: bold;
    font-size: 0.875rem; }
  #CartEditProductFieldsForm #prodd .productOptions-list {
    border: 1px solid #e4e4cf;
    border-radius: 0.375rem;
    margin-bottom: 1rem !important; }
  #CartEditProductFieldsForm #prodd .productOptions-list-item {
    display: flex;
    margin: 0;
    padding: 0.75rem; }
    #CartEditProductFieldsForm #prodd .productOptions-list-item + .productOptions-list-item {
      border-top: 1px solid #e4e4cf; }
    #CartEditProductFieldsForm #prodd .productOptions-list-item figure {
      margin: 0; }
    #CartEditProductFieldsForm #prodd .productOptions-list-item .productOptions-list-item-content {
      border: 2px solid fuchsia;
      display: grid;
      grid-template-columns: 1fr auto;
      column-gap: 0.75rem;
      align-items: center; }
      #CartEditProductFieldsForm #prodd .productOptions-list-item .productOptions-list-item-content input {
        width: 0.9375rem; }
      #CartEditProductFieldsForm #prodd .productOptions-list-item .productOptions-list-item-content label {
        margin: 0; }
  #CartEditProductFieldsForm form label, #CartEditProductFieldsForm .form-el label, #CartEditProductFieldsForm .form-cr label {
    display: block;
    font-weight: 500; }
  #CartEditProductFieldsForm .form-field {
    margin-bottom: 1.5rem; }
  #CartEditProductFieldsForm [class*="set-"] .options {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: row wrap;
    gap: 0.5rem; }
    #CartEditProductFieldsForm [class*="set-"] .options label {
      font-weight: normal; }
  #CartEditProductFieldsForm .set-radio .options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; }
  #CartEditProductFieldsForm .set-radio .options label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row nowrap;
    width: auto; }
    #CartEditProductFieldsForm .set-radio .options label:before {
      content: "";
      display: block;
      width: 0.75rem;
      height: 0.75rem;
      margin: 0 0.5rem 0 0;
      border-radius: 100%;
      border: 0.0625rem solid #626b61;
      background-color: #fff; }
    #CartEditProductFieldsForm .set-radio .options label.unavailable {
      opacity: .5; }
  #CartEditProductFieldsForm .set-radio input {
    position: absolute;
    width: 1px !important;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0); }
    #CartEditProductFieldsForm .set-radio input:checked + label:before {
      background: #393939;
      border: 0.0625rem solid #393939;
      box-shadow: inset 0 0 0 0.1875rem #fff; }
  #CartEditProductFieldsForm select {
    max-width: 18.75rem;
    margin-top: 1rem; }
    #CartEditProductFieldsForm select:disabled, #CartEditProductFieldsForm select.unavailable {
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
      opacity: 0.5; }
  #CartEditProductFieldsForm .set-rectangle .size-chart {
    float: right;
    display: flex;
    gap: 0.5rem; }
    #CartEditProductFieldsForm .set-rectangle .size-chart i {
      color: #626b61;
      font-size: 1.25rem;
      position: relative; }
    #CartEditProductFieldsForm .set-rectangle .size-chart a {
      font-size: 0.75rem; }
  #CartEditProductFieldsForm .set-rectangle .options label {
    background: #fff;
    border: 0.0625rem solid #b9b9ad;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    gap: 0.5rem;
    transition: all .25s linear;
    width: auto;
    overflow: hidden;
    transition-duration: 0.1s; }
    #CartEditProductFieldsForm .set-rectangle .options label:hover, #CartEditProductFieldsForm .set-rectangle .options label:focus {
      background: #e4e4cf;
      cursor: pointer; }
    #CartEditProductFieldsForm .set-rectangle .options label.unavailable {
      color: #b9b9ad;
      background: linear-gradient(to top left, #fff calc(50% - 1px), #aaa, #fff calc(50% + 1px)); }
      #CartEditProductFieldsForm .set-rectangle .options label.unavailable:hover, #CartEditProductFieldsForm .set-rectangle .options label.unavailable:focus {
        background: linear-gradient(to top left, #ddd calc(50% - 1px), #aaa, #ddd calc(50% + 1px));
        cursor: not-allowed; }
  #CartEditProductFieldsForm .set-rectangle input {
    position: absolute;
    width: 1px !important;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0); }
    #CartEditProductFieldsForm .set-rectangle input:checked + label {
      background: #b9b9ad; }
      #CartEditProductFieldsForm .set-rectangle input:checked + label.unavailable {
        background: linear-gradient(to top left, #ddd calc(50% - 1px), #aaa, #ddd calc(50% + 1px)); }
      #CartEditProductFieldsForm .set-rectangle input:checked + label:hover, #CartEditProductFieldsForm .set-rectangle input:checked + label:focus {
        background: #b9b9ad; }
  #CartEditProductFieldsForm .set-swatch {
    margin-bottom: 1.125rem; }
    #CartEditProductFieldsForm .set-swatch label {
      font-weight: 500; }
      #CartEditProductFieldsForm .set-swatch label span {
        color: #626b61; }
    #CartEditProductFieldsForm .set-swatch .options {
      position: relative;
      top: -0.1875rem;
      left: -0.1875rem; }
      #CartEditProductFieldsForm .set-swatch .options label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-flow: row nowrap;
        width: 1.875rem;
        height: 1.875rem;
        margin: 0 0.25rem 0.25rem 0;
        border: 3px solid transparent; }
        #CartEditProductFieldsForm .set-swatch .options label > span {
          transform: rotate(45deg);
          border-radius: 100%;
          width: 100%; }
        #CartEditProductFieldsForm .set-swatch .options label .color-group {
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: space-between;
          align-items: stretch;
          flex-flow: row nowrap;
          overflow: hidden; }
          #CartEditProductFieldsForm .set-swatch .options label .color-group span {
            width: 100%; }
        #CartEditProductFieldsForm .set-swatch .options label::before {
          content: "";
          position: absolute;
          border-radius: 100%;
          width: 1.875rem;
          height: 1.875rem;
          transform: translateY(-4px) translateX(-4px); }
        #CartEditProductFieldsForm .set-swatch .options label.unavailable {
          position: relative; }
          #CartEditProductFieldsForm .set-swatch .options label.unavailable span {
            opacity: .1; }
          #CartEditProductFieldsForm .set-swatch .options label.unavailable::after {
            border-top: 1px solid #b9b9ad;
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: -45%;
            transform: rotate(-45deg);
            transform-origin: 100% 0; }
          #CartEditProductFieldsForm .set-swatch .options label.unavailable:hover, #CartEditProductFieldsForm .set-swatch .options label.unavailable:focus {
            cursor: not-allowed; }
        #CartEditProductFieldsForm .set-swatch .options label:hover, #CartEditProductFieldsForm .set-swatch .options label:focus {
          cursor: pointer;
          transition: none; }
          #CartEditProductFieldsForm .set-swatch .options label:hover::before, #CartEditProductFieldsForm .set-swatch .options label:focus::before {
            border: 1px dashed #686868; }
      #CartEditProductFieldsForm .set-swatch .options label.pattern {
        border-radius: 0;
        width: 3.125rem;
        height: 3.125rem; }
        #CartEditProductFieldsForm .set-swatch .options label.pattern span {
          background-size: cover; }
        #CartEditProductFieldsForm .set-swatch .options label.pattern > span {
          transform: rotate(0deg);
          border-radius: 100%;
          width: 100%; }
        #CartEditProductFieldsForm .set-swatch .options label.pattern::before {
          content: "";
          position: absolute;
          width: 3.125rem;
          height: 3.125rem;
          transform: translateY(-4px) translateX(-4px); }
        #CartEditProductFieldsForm .set-swatch .options label.pattern .form-option-expanded {
          display: none; }
      #CartEditProductFieldsForm .set-swatch .options input {
        position: absolute;
        width: 1px !important;
        height: 1px;
        padding: 0;
        margin: -1px;
        border: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0); }
        #CartEditProductFieldsForm .set-swatch .options input:checked + label::before {
          border: 1px solid #393939; }
        #CartEditProductFieldsForm .set-swatch .options input:checked + label.unavailable::before {
          border: 1px solid #e4e4cf; }

/*  --------------------------------------------------------------------------  *\

    CART - TOTALS

\*  --------------------------------------------------------------------------  */
.totals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: row wrap;
  font-size: 0.875rem;
  padding: 0.5rem 0 0;
  border-top: 1px solid #b9b9ad;
  margin: 1rem 0 0; }
  @media (min-width: 992px) {
    .totals {
      margin-top: 1.5rem;
      padding-top: 1rem; } }
  .totals form {
    margin: 0; }
  .totals .form-input {
    border-bottom: 1px solid #b9b9ad; }
    .totals .form-input ::placeholder {
      color: #e4e4cf; }
  .totals .form-el {
    margin: 0; }
  .totals .form-actions {
    margin: 0.5rem 0 0; }
  .totals .btn-primary {
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }
  .totals select {
    margin: 0;
    display: block;
    width: 100%; }
  .totals .estimator-form select, .totals .estimator-form input {
    margin-bottom: 1rem; }
    .totals .estimator-form select#shipping-zip, .totals .estimator-form input#shipping-zip {
      margin-bottom: 0; }
  .totals .estimator-form label {
    display: block;
    text-align: left;
    font-size: 10px;
    line-height: 18px;
    color: #393939; }
  @media (min-width: 992px) {
    .totals .estimator-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 8px; }
      .totals .estimator-form .form-actions, .totals .estimator-form .form-btns {
        grid-column: 1 / span 2; } }
  .totals .space-above {
    border-top: 1px solid #b9b9ad;
    padding-top: 1.5rem;
    margin-top: 1rem; }
  .totals dt, .totals dd {
    width: 50%;
    padding: 0.5rem 0;
    margin: 0; }
    .totals dt:last-of-type, .totals dd:last-of-type {
      font-weight: bold; }
  .totals dt {
    text-align: left; }
  .totals dd {
    text-align: right; }
    .totals dd.full {
      width: 100%; }
  .totals dd.grand-total, .totals dt.grand-total {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    border-top: 1px solid #b9b9ad;
    padding: 1.5rem 0;
    margin-top: 1rem; }

/*  --------------------------------------------------------------------------  *\

    WIDGETS

    The order here doesn't really matter, these imports will call in all 
    the widgets we've built for the website.

\*  --------------------------------------------------------------------------  */
/*  --------------------------------------------------------------------------  *\

    CUSTOM WIDGETS STYLING

\*  --------------------------------------------------------------------------  */
/* First, remove some styling that BigCommerce adds to widgets */
[data-sub-layout-container] {
  z-index: unset !important; }

[data-sub-layout] {
  padding: 0 !important;
  z-index: unset !important; }

main [data-widget-id] + [data-widget-id] section {
  padding: 0 0 2.5rem; }
  @media (min-width: 992px) {
    main [data-widget-id] + [data-widget-id] section {
      padding: 0 0 4.5rem; } }

main [data-sub-layout-container] + [data-sub-layout-container] section {
  padding: 0 0 2.5rem; }
  @media (min-width: 992px) {
    main [data-sub-layout-container] + [data-sub-layout-container] section {
      padding: 0 0 4.5rem; } }

main [data-content-region] + section {
  padding: 0 0 2.5rem; }
  @media (min-width: 992px) {
    main [data-content-region] + section {
      padding: 0 0 4.5rem; } }

main [data-content-region] + [data-content-region] section {
  padding: 0 0 2.5rem; }
  @media (min-width: 992px) {
    main [data-content-region] + [data-content-region] section {
      padding: 0 0 4.5rem; } }

main section + [data-content-region] section {
  padding: 0 0 2.5rem; }
  @media (min-width: 992px) {
    main section + [data-content-region] section {
      padding: 0 0 4.5rem; } }

main [data-content-region] + [data-content-region] section.widget-full-padding-top {
  padding-top: 2.5rem !important; }
  @media (min-width: 992px) {
    main [data-content-region] + [data-content-region] section.widget-full-padding-top {
      padding-top: 5rem !important; } }

main [data-content-region] + [data-content-region] section.widget-full-padding-bottom {
  padding-bottom: 2.5rem !important; }
  @media (min-width: 992px) {
    main [data-content-region] + [data-content-region] section.widget-full-padding-bottom {
      padding-bottom: 5rem !important; } }

main [data-content-region] + [data-content-region] section.widget-half-padding-top {
  padding-top: 1.25rem !important; }
  @media (min-width: 992px) {
    main [data-content-region] + [data-content-region] section.widget-half-padding-top {
      padding-top: 2.5rem !important; } }

main [data-content-region] + [data-content-region] section.widget-half-padding-bottom {
  padding-bottom: 1.25rem !important; }
  @media (min-width: 992px) {
    main [data-content-region] + [data-content-region] section.widget-half-padding-bottom {
      padding-bottom: 2.5rem !important; } }

main [data-content-region] + [data-content-region] section.widget-no-padding-top {
  padding-top: 0 !important; }

main [data-content-region] + [data-content-region] section.widget-no-padding-bottom {
  padding-bottom: 0 !important; }

section.widget-full-padding-top {
  padding-top: 2.5rem !important; }
  @media (min-width: 992px) {
    section.widget-full-padding-top {
      padding-top: 5rem !important; } }

section.widget-full-padding-bottom {
  padding-bottom: 2.5rem !important; }
  @media (min-width: 992px) {
    section.widget-full-padding-bottom {
      padding-bottom: 5rem !important; } }

section.widget-half-padding-top {
  padding-top: 1.25rem !important; }
  @media (min-width: 992px) {
    section.widget-half-padding-top {
      padding-top: 2.5rem !important; } }

section.widget-half-padding-bottom {
  padding-bottom: 1.25rem !important; }
  @media (min-width: 992px) {
    section.widget-half-padding-bottom {
      padding-bottom: 2.5rem !important; } }

section.widget-no-padding-top {
  padding-top: 0 !important; }

section.widget-no-padding-bottom {
  padding-bottom: 0 !important; }

/* Custom styling below */
.hero.interior .download-pdf {
  background-color: #fff;
  outline: 8px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  z-index: 1;
  right: 1rem;
  left: 1rem;
  bottom: 1.5rem; }
  @media (min-width: 992px) {
    .hero.interior .download-pdf {
      right: 0;
      left: auto;
      bottom: auto;
      top: 50%;
      transform: translate(0, -50%); } }
  .hero.interior .download-pdf .btn-secondary {
    opacity: 1; }

.design-top .container {
  border-bottom: 1px solid #ef9662;
  padding-bottom: 80px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .design-top .container h1 {
    margin-bottom: 2rem; }
  .design-top .container > div {
    width: 100%;
    padding: 1.25rem; }
    @media (min-width: 768px) {
      .design-top .container > div {
        width: 50%; } }
  .design-top .container .cnt {
    margin-bottom: 2rem; }

.promo-banner {
  position: relative;
  display: none; }
  @media (min-width: 768px) {
    .promo-banner {
      display: block;
      margin-bottom: 2rem; } }
  .promo-banner .img-w {
    padding-top: 18.6%;
    position: relative;
    overflow: hidden;
    height: 0; }
    @media (min-width: 1200px) {
      .promo-banner .img-w {
        padding-top: 12.6%; } }
    .promo-banner .img-w img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      height: 100%;
      object-fit: cover; }
    .promo-banner .img-w::before {
      content: "";
      position: absolute;
      width: 90%;
      height: 100%;
      top: 0;
      left: 0;
      background: linear-gradient(90deg, #231f20 -100%, rgba(35, 31, 32, 0.6) 5%, rgba(35, 31, 32, 0) 100%);
      z-index: 1; }
  .promo-banner .cnt {
    z-index: 10;
    position: absolute;
    top: 25%;
    left: 5%;
    color: #fff; }
    .promo-banner .cnt h3 {
      color: #fff;
      margin-bottom: 0.5rem; }

.category-cards {
  padding: 2.5rem 0 !important; }
  @media (max-width: 767.9px) {
    .category-cards {
      height: 318px; } }
  @media (min-width: 768px) {
    .category-cards {
      padding: 0; } }
  .category-cards h2 {
    display: none; }
    .category-cards h2 small:empty {
      display: none; }
    @media (min-width: 768px) {
      .category-cards h2 {
        display: block;
        text-align: center;
        margin: 1rem 0 1.5rem; } }
    @media (min-width: 992px) {
      .category-cards h2 {
        text-align: left;
        margin: 2rem 0 1.5rem; } }
  .category-cards .holder {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 1rem; }
    @media (min-width: 768px) {
      .category-cards .holder {
        grid-template-columns: 1fr 1fr;
        column-gap: 1rem;
        row-gap: 1.5rem; } }
    @media (min-width: 992px) {
      .category-cards .holder {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        column-gap: 2rem; } }
    .category-cards .holder > div a {
      text-decoration: none; }
    .category-cards .holder > div .img-wrap {
      position: relative;
      width: 100%;
      padding: 100% 0 0;
      margin: 0 0 1rem;
      overflow: hidden;
      display: none; }
      @media (min-width: 768px) {
        .category-cards .holder > div .img-wrap {
          display: block; } }
      .category-cards .holder > div .img-wrap img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        height: 100%; }
    .category-cards .holder > div .outer {
      padding: 0;
      width: 100%; }
      .category-cards .holder > div .outer .btn-secondary {
        padding: 0.8125rem 0;
        border: 1px solid #5a575d;
        text-decoration: none;
        font-size: 0.875rem;
        line-height: 140%;
        width: 100%; }

.category-cards .cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 1rem; }
  @media (min-width: 768px) {
    .category-cards .cards {
      grid-template-columns: 1fr 1fr;
      column-gap: 1rem;
      row-gap: 1.5rem; } }
  @media (min-width: 992px) {
    .category-cards .cards {
      grid-template-columns: 1fr 1fr 1fr 1fr;
      column-gap: 2rem; } }
  .category-cards .cards > div.card {
    width: 100% !important;
    padding: 0 !important; }
  .category-cards .cards > div a {
    text-decoration: none; }
  .category-cards .cards > div .img-wrap {
    position: relative;
    width: 100%;
    padding: 100% 0 0;
    margin: 0 0 1rem;
    overflow: hidden;
    display: none; }
    @media (min-width: 768px) {
      .category-cards .cards > div .img-wrap {
        display: block; } }
    .category-cards .cards > div .img-wrap img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      height: 100%; }
  .category-cards .cards > div .outer {
    padding: 0;
    width: 100%; }
    .category-cards .cards > div .outer .btn-secondary {
      padding: 0.8125rem 0;
      border: 1px solid #5a575d;
      text-decoration: none;
      font-size: 0.875rem;
      line-height: 140%;
      width: 100%; }

.home-hero2-link {
  text-decoration: none;
  color: #fff; }
  .home-hero2-link:hover, .home-hero2-link:active {
    text-decoration: none;
    color: #fff; }

.home-hero2 {
  position: relative;
  background-color: #5a575d;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 104.5px)); }
  .home-hero2 .cnt {
    padding: 2.5rem 1.25rem;
    grid-column: span 12;
    align-self: center;
    color: #fff;
    order: 2; }
    .home-hero2 .cnt * {
      text-align: center; }
      @media (min-width: 992px) {
        .home-hero2 .cnt * {
          text-align: left; } }
    .home-hero2 .cnt h1 {
      color: #fff;
      margin-bottom: 1.5rem; }
    .home-hero2 .cnt p {
      color: #fff; }
  .home-hero2 .img-w {
    grid-column: span 12;
    order: 1; }
    .home-hero2 .img-w picture, .home-hero2 .img-w img {
      height: 9.375rem;
      object-fit: cover; }
    .home-hero2 .img-w .img-caption {
      display: none; }
  @media (min-width: 768px) {
    .home-hero2 {
      padding-top: 0px;
      grid-template-columns: minmax(40px, 1fr) repeat(12, minmax(0, 104.5px)) minmax(40px, 1fr);
      grid-template-rows: 495px; }
      .home-hero2 .cnt {
        padding: 0;
        grid-column: 2 / span 4;
        grid-row: 1;
        align-self: center;
        order: 1; }
        .home-hero2 .cnt h1 {
          line-height: 3.5rem; }
      .home-hero2 .img-w {
        grid-column: 7 / span 8;
        grid-row: 1 / span 1;
        order: 2; }
        .home-hero2 .img-w picture, .home-hero2 .img-w img {
          height: 30.9375rem; }
        .home-hero2 .img-w .img-caption {
          display: block;
          position: absolute;
          bottom: 0;
          right: 0;
          transform: translate(-70%, -100%);
          font-weight: 600;
          font-size: 0.875rem; }
      .home-hero2.img-left .cnt {
        order: 2;
        grid-column: 10 / span 4; }
      .home-hero2.img-left .img-w {
        order: 1;
        grid-column: 1 / span 8; }
        .home-hero2.img-left .img-w .img-caption {
          left: 0;
          right: auto;
          transform: translate(70%, -100%); }
      .home-hero2.img-full .img-w {
        grid-column: span 14;
        grid-row: 1 / span 1;
        order: 1; }
        .home-hero2.img-full .img-w .img-caption {
          left: 0;
          right: auto;
          transform: translate(70%, -100%); }
      .home-hero2.img-full .cnt {
        display: none; } }
  @media (min-width: 1200px) {
    .home-hero2 {
      grid-template-columns: minmax(80px, 1fr) repeat(12, minmax(0, 104.5px)) minmax(80px, 1fr); } }

.home-hero {
  position: relative;
  display: flex;
  flex-flow: column nowrap; }
  .home-hero .cnt {
    padding: 2.5rem 1rem;
    background-color: #5a575d;
    color: #fff; }
    .home-hero .cnt h1 {
      color: #fff;
      margin-bottom: 1.5rem; }
    .home-hero .cnt a {
      width: auto; }
  @media (min-width: 768px) {
    .home-hero {
      max-height: 25.625rem;
      flex-flow: row nowrap; }
      .home-hero .img-w {
        order: 2;
        width: 50%; }
        .home-hero .img-w img {
          height: 100%;
          object-fit: cover; }
      .home-hero .cnt {
        order: 1;
        width: 50%;
        padding: 4rem 3rem; } }
  @media (min-width: 992px) {
    .home-hero {
      max-height: 36.5rem; }
      .home-hero .img-w {
        width: 58.33%; }
      .home-hero .cnt {
        width: 41.67%;
        padding: 9.4375rem 5rem; } }

.mid-page-promo {
  text-align: center; }
  .mid-page-promo h2 {
    text-align: center;
    margin: 0 auto 1.75rem;
    width: 80%; }
    @media (min-width: 768px) {
      .mid-page-promo h2 {
        width: 60%; } }
    @media (min-width: 992px) {
      .mid-page-promo h2 {
        width: 50%; } }
    .mid-page-promo h2 small {
      color: #5a575d; }
  .mid-page-promo .btn-primary {
    width: auto; }
  @media (min-width: 992px) {
    .mid-page-promo {
      padding: 3rem 0; } }

.paragraph-block hr {
  margin-top: 0;
  margin-bottom: 3rem; }
  @media (min-width: 992px) {
    .paragraph-block hr {
      margin-bottom: 4.5rem; } }

.paragraph-block .cnt {
  margin: 0 auto; }
  .paragraph-block .cnt h3 {
    margin-bottom: 1.25rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem; }
    @media (min-width: 992px) {
      .paragraph-block .cnt h3 {
        font-size: 1.25rem; } }

.seo-block {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  position: relative;
  margin-top: 2.5rem; }
  .seo-block a {
    color: #5A575D;
    font-weight: 600; }
  @media (min-width: 768px) {
    .seo-block {
      margin-top: 4.5rem; } }
  .seo-block:before {
    content: "";
    display: block;
    height: 0.0625rem;
    width: 100%;
    position: absolute;
    top: -2.5rem;
    left: 0;
    background: #D5D5D3; }
    @media (min-width: 768px) {
      .seo-block:before {
        top: -4.5rem; } }
  .seo-block .img-w {
    width: calc(100%);
    margin: 0 auto;
    order: 0;
    align-self: center;
    display: none; }
    .seo-block .img-w img {
      object-fit: cover; }
  .seo-block .cnt {
    width: 100%;
    padding: 0;
    background-color: transparent; }
    .seo-block .cnt h2 {
      text-align: left; }
    .seo-block .cnt p:last-child {
      margin: 0; }
  @media (min-width: 768px) {
    .seo-block .img-w {
      order: 0;
      width: 46%;
      margin: 0; }
    .seo-block .cnt {
      align-self: center;
      order: 1;
      padding-left: 0; }
    .seo-block.alt .img-w {
      order: 2; } }

.seo-sep {
  margin: 2.5rem auto; }
  @media (min-width: 768px) {
    .seo-sep {
      margin: 4.5rem auto; } }

.shop-this-look .container > .outer {
  position: relative;
  margin-bottom: 2.8125rem;
  background-color: #e3e3e3;
  padding: 0.625rem; }
  @media (min-width: 768px) {
    .shop-this-look .container > .outer {
      padding: 1rem; } }
  .shop-this-look .container > .outer .img-w {
    position: relative;
    padding-top: 88%;
    overflow: hidden;
    height: 0; }
    @media (min-width: 768px) {
      .shop-this-look .container > .outer .img-w {
        padding-top: 37.5%; } }
    .shop-this-look .container > .outer .img-w img {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      object-fit: cover; }
  .shop-this-look .container > .outer::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateX(100%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 15px 0 15px;
    border-color: #e3e3e3 transparent transparent transparent; }
    @media (min-width: 768px) {
      .shop-this-look .container > .outer::after {
        border-width: 24px 20.5px 0 20.5px; } }

.shop-this-look .container > .cnt {
  display: flex;
  flex-flow: row wrap;
  justify-content: center; }
  @media (max-width: 767.9px) {
    .shop-this-look .container > .cnt .cnt-left {
      padding: 0 0 2.5rem;
      margin: 0 0 2.5rem;
      border-bottom: 1px solid #e3e3e3; } }
  @media (min-width: 768px) {
    .shop-this-look .container > .cnt .cnt-left {
      width: 40%;
      margin: 0 3rem 0 0;
      border: none; } }
  .shop-this-look .container > .cnt .cnt-left h2 {
    text-align: left;
    margin-bottom: 1rem; }
  .shop-this-look .container > .cnt .cnt-left p:last-of-type {
    margin-bottom: 2rem; }
  .shop-this-look .container > .cnt .cnt-left .btn-primary {
    width: auto; }
  .shop-this-look .container > .cnt .cnt-products {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%; }
    @media (min-width: 768px) {
      .shop-this-look .container > .cnt .cnt-products {
        width: 50%;
        justify-content: flex-end; } }
    .shop-this-look .container > .cnt .cnt-products .card {
      width: calc(50% - 10px);
      padding: 0 0.3125rem; }
      @media (min-width: 768px) {
        .shop-this-look .container > .cnt .cnt-products .card {
          width: calc(50% - 16px);
          padding: 0 0.5rem; } }
      @media (min-width: 992px) {
        .shop-this-look .container > .cnt .cnt-products .card {
          width: calc(50% - 32px);
          padding: 0 1rem; } }
    .shop-this-look .container > .cnt .cnt-products .card:first-child {
      padding-left: 0; }

.review-title {
  text-align: center;
  margin-top: 1.25rem;
  display: none; }

.review-carousel {
  margin-bottom: 1.25rem; }
  .review-carousel .slick-next, .review-carousel .slick-prev {
    display: none; }
    @media (min-width: 992px) {
      .review-carousel .slick-next, .review-carousel .slick-prev {
        display: block; } }
  @media (min-width: 992px) {
    .review-carousel .slick-dots {
      display: none !important; } }
  .review-carousel .slick-list {
    overflow: hidden;
    width: 100%; }
  .review-carousel .review {
    display: flex;
    justify-content: center;
    flex-flow: column nowrap; }
    @media (min-width: 992px) {
      .review-carousel .review {
        flex-flow: row nowrap; } }
    .review-carousel .review .img-w {
      order: 0; }
      @media (min-width: 992px) {
        .review-carousel .review .img-w {
          width: 41.67%;
          margin: 0;
          order: 1; } }
    .review-carousel .review .cnt {
      background-color: #f6f6f6;
      margin: 0;
      order: 1;
      padding: 1.5rem;
      position: relative;
      width: 100%; }
      @media (min-width: 992px) {
        .review-carousel .review .cnt {
          margin: 0 -4.0625rem 0 0;
          padding: 4.375rem 3rem 3.125rem;
          width: 50%;
          align-self: center;
          order: 0; } }
      @media (min-width: 1200px) {
        .review-carousel .review .cnt {
          padding: 4.375rem 2.8125rem; } }
      .review-carousel .review .cnt svg {
        width: 3rem;
        height: 2.5rem;
        position: absolute;
        bottom: 100%;
        left: 0;
        transform: translate(60%, 40%); }
        @media (min-width: 992px) {
          .review-carousel .review .cnt svg {
            width: 4.625rem;
            height: 4.125rem; } }
      .review-carousel .review .cnt .icon-review-quote {
        display: none;
        font-size: 3.75rem;
        position: absolute;
        top: -2.75rem;
        left: 3rem; }
        .review-carousel .review .cnt .icon-review-quote:before {
          content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzUiIGhlaWdodD0iNjIiIHZpZXdCb3g9IjAgMCA3NSA2MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wIDMxLjQ1MDhWNjEuOTQ0NUgzMC40OTM4VjMxLjQ1MDhIMTMuMDY4OEMxMy4wNjg4IDIxLjgyODggMjAuODcxNSAxNC4wMjU4IDMwLjQ5MzggMTQuMDI1OFYwLjk1NzAzMUMxMy42NTAyIDAuOTU3MDMxIDAgMTQuNjA5NyAwIDMxLjQ1MDhaTTc0LjA1NjMgMTQuMDI1OFYwLjk1NzAzMUM1Ny4yMTYxIDAuOTU3MDMxIDQzLjU2MjUgMTQuNjA5NyA0My41NjI1IDMxLjQ1MDhWNjEuOTQ0NUg3NC4wNTYzVjMxLjQ1MDhINTYuNjMxM0M1Ni42MzEzIDIxLjgyODggNjQuNDM0IDE0LjAyNTggNzQuMDU2MyAxNC4wMjU4WiIgZmlsbD0iI0VBQjQ0NCIvPgo8L3N2Zz4K"); }
        @media (min-width: 992px) {
          .review-carousel .review .cnt .icon-review-quote {
            display: block; } }
      .review-carousel .review .cnt h3 {
        font-weight: 400;
        font-size: 1rem;
        line-height: 160%;
        margin: 0 0 1rem;
        font-family: "Crimson Text", Helvetica, Arial, sans-serif; }
        @media (min-width: 992px) {
          .review-carousel .review .cnt h3 {
            font-size: 1.25rem;
            margin: 0 0 1.5rem; } }
      .review-carousel .review .cnt .byline {
        font-weight: 400;
        font-size: 0.875rem;
        line-height: 160%;
        margin: 0; }
        @media (min-width: 992px) {
          .review-carousel .review .cnt .byline {
            font-size: 1rem; } }
        .review-carousel .review .cnt .byline span {
          display: block;
          font-weight: 700;
          color: #5a575d;
          margin: 0 0 0.125rem; }
          @media (min-width: 992px) {
            .review-carousel .review .cnt .byline span {
              margin: 0; } }
  .review-carousel .slick-prev {
    position: absolute;
    top: 40%;
    right: 100%; }
  .review-carousel .slick-next {
    position: absolute;
    top: 40%;
    left: 100%; }
  .review-carousel .slick-dots {
    padding: 2.5rem 0; }

.why-azfx-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 104.5px));
  padding-top: 30px; }
  .why-azfx-grid .img-w {
    grid-column: span 12;
    order: 1;
    position: relative;
    padding-top: 100%;
    overflow: hidden; }
    .why-azfx-grid .img-w img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .why-azfx-grid .cnt {
    grid-column: span 12;
    order: 2;
    padding: 1.5rem;
    background-color: transparent;
    order: 2; }
    .why-azfx-grid .cnt .fact-w {
      display: flex;
      justify-content: flex-start;
      flex-flow: row wrap; }
      .why-azfx-grid .cnt .fact-w .fact {
        margin: 2rem 0 0;
        max-width: 90%;
        width: 100%;
        display: flex;
        align-items: center; }
        @media (max-width: 991.9px) {
          .why-azfx-grid .cnt .fact-w .fact:first-child {
            margin: 0; } }
        .why-azfx-grid .cnt .fact-w .fact .fact-img {
          max-width: 2rem;
          height: 2rem; }
          .why-azfx-grid .cnt .fact-w .fact .fact-img > img {
            width: 100%;
            height: auto; }
        .why-azfx-grid .cnt .fact-w .fact .fact-cnt {
          width: 75%;
          min-height: 2.0625rem;
          text-align: left;
          margin: 0 0 0 1rem;
          padding-left: 1rem;
          border-left: 0.75px solid #bbadaa;
          display: flex;
          align-items: center; }
          .why-azfx-grid .cnt .fact-w .fact .fact-cnt h3 {
            margin: 0;
            font-weight: 400;
            font-size: 0.875rem; }
    .why-azfx-grid .cnt h2 {
      margin: 0 0 1rem;
      text-align: left; }
    .why-azfx-grid .cnt p {
      font-weight: 400; }
  @media (min-width: 768px) {
    .why-azfx-grid {
      padding-top: 0px;
      grid-template-columns: minmax(40px, 1fr) repeat(12, minmax(0, 104.5px)) minmax(40px, 1fr); }
      .why-azfx-grid .cnt {
        padding: 3.5rem 2rem;
        grid-column: 2 / span 5;
        align-self: center;
        order: 1; }
        .why-azfx-grid .cnt > h2 {
          font-size: 2rem; }
      .why-azfx-grid .img-w {
        padding: 0;
        grid-column: 8 / span 8;
        order: 2; } }
  @media (min-width: 992px) {
    .why-azfx-grid {
      grid-template-columns: minmax(80px, 1fr) repeat(12, minmax(0, 104.5px)) minmax(80px, 1fr); }
      .why-azfx-grid .cnt > h2 {
        font-size: 2.5rem;
        margin: 0 0 1.5rem; }
      .why-azfx-grid .cnt > p {
        margin: 0; }
      .why-azfx-grid .cnt .fact-w {
        display: flex;
        justify-content: flex-start;
        flex-flow: row wrap; }
        .why-azfx-grid .cnt .fact-w .fact {
          margin: 2rem 0 0;
          width: calc(50% - 24px);
          display: flex;
          align-items: center; }
          .why-azfx-grid .cnt .fact-w .fact .fact-img {
            max-width: 2rem;
            height: 2rem; }
            .why-azfx-grid .cnt .fact-w .fact .fact-img > img {
              width: 100%;
              height: auto; }
          .why-azfx-grid .cnt .fact-w .fact .fact-cnt {
            width: 75%;
            min-height: 2.0625rem;
            text-align: left;
            margin: 0 0 0 1rem;
            padding-left: 1rem;
            border-left: 0.75px solid #bbadaa;
            display: flex;
            align-items: center; }
            .why-azfx-grid .cnt .fact-w .fact .fact-cnt h3 {
              margin: 0;
              font-weight: 400;
              font-size: 0.875rem; }
          .why-azfx-grid .cnt .fact-w .fact:nth-child(odd) {
            margin-right: 3rem; } }

.why-azfx {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap; }
  .why-azfx .img-w {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    order: 1;
    width: 100%; }
    .why-azfx .img-w img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .why-azfx .cnt {
    width: 100%;
    padding: 1.5rem;
    background-color: transparent;
    order: 2; }
    .why-azfx .cnt .fact-w {
      display: flex;
      justify-content: flex-start;
      flex-flow: row wrap; }
      .why-azfx .cnt .fact-w .fact {
        margin: 2rem 0 0;
        max-width: 90%;
        width: 100%;
        display: flex;
        align-items: center; }
        @media (max-width: 991.9px) {
          .why-azfx .cnt .fact-w .fact:first-child {
            margin: 0; } }
        .why-azfx .cnt .fact-w .fact .fact-img {
          max-width: 2rem;
          height: 2rem; }
          .why-azfx .cnt .fact-w .fact .fact-img > img {
            width: 100%;
            height: auto; }
        .why-azfx .cnt .fact-w .fact .fact-cnt {
          width: 75%;
          min-height: 2.0625rem;
          text-align: left;
          margin: 0 0 0 1rem;
          padding-left: 1rem;
          border-left: 0.75px solid #bbadaa;
          display: flex;
          align-items: center; }
          .why-azfx .cnt .fact-w .fact .fact-cnt h3 {
            margin: 0;
            font-weight: 400;
            font-size: 0.875rem; }
    .why-azfx .cnt h2 {
      margin: 0 0 1rem;
      text-align: left; }
    .why-azfx .cnt p {
      font-weight: 400; }
  @media (min-width: 768px) {
    .why-azfx .img-w {
      padding: 0;
      width: 50%;
      align-self: auto; }
    .why-azfx .cnt {
      width: 50%;
      align-self: stretch;
      padding: 3.5rem 2rem;
      order: 0; }
      .why-azfx .cnt > h2 {
        font-size: 2rem; }
    .why-azfx.alt .cnt {
      order: 2; } }
  @media (min-width: 992px) {
    .why-azfx .img-w {
      width: 50%; }
    .why-azfx .cnt {
      padding: 6rem 5rem 3.75rem; }
      .why-azfx .cnt > h2 {
        font-size: 2.5rem;
        margin: 0 0 1.5rem; }
      .why-azfx .cnt > p {
        margin: 0; }
      .why-azfx .cnt .fact-w {
        display: flex;
        justify-content: flex-start;
        flex-flow: row wrap; }
        .why-azfx .cnt .fact-w .fact {
          margin: 2rem 0 0;
          width: calc(50% - 24px);
          display: flex;
          align-items: center; }
          .why-azfx .cnt .fact-w .fact .fact-img {
            max-width: 2rem;
            height: 2rem; }
            .why-azfx .cnt .fact-w .fact .fact-img > img {
              width: 100%;
              height: auto; }
          .why-azfx .cnt .fact-w .fact .fact-cnt {
            width: 75%;
            min-height: 2.0625rem;
            text-align: left;
            margin: 0 0 0 1rem;
            padding-left: 1rem;
            border-left: 0.75px solid #bbadaa;
            display: flex;
            align-items: center; }
            .why-azfx .cnt .fact-w .fact .fact-cnt h3 {
              margin: 0;
              font-weight: 400;
              font-size: 0.875rem; }
          .why-azfx .cnt .fact-w .fact:nth-child(odd) {
            margin-right: 3rem; } }

.powr-gallery {
  text-align: center; }
  @media (min-width: 768px) {
    .powr-gallery {
      padding-top: 0; } }
  .powr-gallery .btn-secondary {
    margin-top: 2.5rem; }

.install-videos h2 {
  margin-top: -0.75rem;
  margin-bottom: 1.5rem; }
  @media (min-width: 768px) {
    .install-videos h2 {
      margin-bottom: 3rem; } }

.install-videos .video-carousel .slick-list {
  margin: 0 0 0 -1rem; }

.install-videos .video-carousel .slick-dots {
  margin: 1rem 0 0; }

@media (max-width: 767.9px) {
  .install-videos .video-carousel .slick-arrow {
    top: -2.25rem; } }

.install-videos .video-carousel .vid-w {
  padding: 0; }
  .install-videos .video-carousel .vid-w iframe {
    width: 100%;
    height: 14.6875rem;
    padding-left: 1rem; }
  .install-videos .video-carousel .vid-w .vid-caption {
    margin: 1rem 0 0;
    text-align: center; }
  @media (min-width: 768px) {
    .install-videos .video-carousel .vid-w {
      padding: 0 1rem; }
      .install-videos .video-carousel .vid-w iframe {
        height: auto;
        padding: 0; }
      .install-videos .video-carousel .vid-w .vid-caption {
        text-align: left; } }

.install-videos hr {
  margin: 3rem auto 0.75rem; }

.modal {
  margin: 0 auto;
  max-height: 90%;
  max-width: 95%;
  min-height: 240px;
  outline: none;
  display: none;
  padding: 0;
  left: 50%;
  right: 0;
  top: 50% !important;
  transform: translate(-50%, -50%);
  z-index: 10000;
  position: fixed; }
  .modal.modal--alert {
    background: #fff;
    padding: 2rem;
    text-align: center;
    max-width: 31.25rem;
    margin: 0; }
    .modal.modal--alert .modal-content {
      margin: 0 0 2rem; }
      .modal.modal--alert .modal-content span {
        font-weight: 600;
        font-size: 1rem;
        line-height: 160%; }

.modal-background {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  bottom: 0; }

.modal--large {
  width: 90%; }
  @media (min-width: 768px) {
    .modal--large {
      width: 60%; } }

.facts-widget .facts-carousel {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease; }
  .facts-widget .facts-carousel.slick-initialized {
    visibility: visible;
    opacity: 1; }

.facts-widget .fact .img-w {
  max-width: 3.125rem;
  height: 3.125rem;
  margin: 0 auto 1.3125rem; }
  .facts-widget .fact .img-w > img {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1; }
    @media (min-width: 992px) {
      .facts-widget .fact .img-w > img {
        width: 72px;
        height: 72px; } }
  @media (min-width: 992px) {
    .facts-widget .fact .img-w {
      max-width: 4.5rem;
      height: 4.5rem;
      margin: 0 auto 1.625rem; } }

.facts-widget .cnt h3 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.125rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem; }

.facts-widget .facts-sep {
  display: none;
  margin-top: 2.5rem;
  margin-bottom: 0; }
  @media (min-width: 992px) {
    .facts-widget .facts-sep {
      margin-top: 4.5rem; } }

.related-products {
  padding-top: 0.1875rem;
  background: linear-gradient(0deg, #f6f6f6 50%, #fff 50%); }
  .related-products h2 {
    margin-bottom: 3.4375rem;
    border-top: 1px solid #ef9662;
    padding-top: 3rem; }
  .related-products .holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between; }
    .related-products .holder::after {
      content: '';
      flex: auto; }
    .related-products .holder > div {
      position: relative; }
      .related-products .holder > div .img-wrap {
        position: relative;
        width: 100%;
        padding: 100% 0 0;
        overflow: hidden; }
        @media (min-width: 768px) {
          .related-products .holder > div .img-wrap {
            padding: 120% 0 0; } }
        .related-products .holder > div .img-wrap img {
          object-fit: cover;
          position: absolute;
          top: 0;
          left: 50%;
          height: 100%;
          transform: translate(-50%, 0); }
      @media (max-width: 575.9px) {
        .related-products .holder > div {
          margin: 1rem 1rem 0 0;
          width: calc(1/1*100% - (1 - 1/1)*1rem); }
          .related-products .holder > div:nth-child(1n) {
            margin-right: 0; }
          .related-products .holder > div:nth-child(-n+1) {
            margin-top: 0; } }
      @media (min-width: 576px) and (max-width: 767.9px) {
        .related-products .holder > div {
          margin: 1rem 1rem 0 0;
          width: calc(1/1*100% - (1 - 1/1)*1rem); }
          .related-products .holder > div:nth-child(1n) {
            margin-right: 0; }
          .related-products .holder > div:nth-child(-n+1) {
            margin-top: 0; } }
      @media (min-width: 768px) and (max-width: 991.9px) {
        .related-products .holder > div {
          margin: 1.5rem 1.5rem 0 0;
          width: calc(1/3*100% - (1 - 1/3)*1.5rem); }
          .related-products .holder > div:nth-child(3n) {
            margin-right: 0; }
          .related-products .holder > div:nth-child(-n+3) {
            margin-top: 0; } }
      @media (min-width: 992px) {
        .related-products .holder > div {
          margin: 2rem 2rem 0 0;
          width: calc(1/3*100% - (1 - 1/3)*2rem); }
          .related-products .holder > div:nth-child(3n) {
            margin-right: 0; }
          .related-products .holder > div:nth-child(-n+3) {
            margin-top: 0; } }
    .related-products .holder div > a {
      display: block;
      color: #eacb86;
      text-align: center;
      font-size: 0.875rem;
      line-height: 1.71429;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em; }
      .related-products .holder div > a:hover, .related-products .holder div > a:focus {
        color: #eab444; }
    .related-products .holder div.outer {
      position: absolute;
      bottom: 0;
      padding: 1.5rem 3rem;
      width: 100%; }
      @media (min-width: 768px) {
        .related-products .holder div.outer {
          padding: 1.5rem 1.5rem; } }
      @media (min-width: 992px) {
        .related-products .holder div.outer {
          padding: 2.5rem 2.5rem; } }
      .related-products .holder div.outer div {
        background-color: #fff;
        outline: 8px solid rgba(255, 255, 255, 0.5);
        padding: 0.8125rem 0;
        border: 2px solid #ef9662;
        overflow: hidden; }

.faq-block {
  padding: 0; }
  .faq-block h2 {
    margin-bottom: 0;
    text-align: left; }
    @media (min-width: 992px) {
      .faq-block h2 {
        margin-bottom: 0.5rem; } }
  .faq-block .accordion {
    border-bottom: 1px solid #e3e3e3; }
    .faq-block .accordion dt {
      border-top: 1px solid #e3e3e3; }
      .faq-block .accordion dt:nth-child(1) {
        border-top: none; }
      .faq-block .accordion dt button {
        padding: 1.5rem 1.5rem 1.5rem 0;
        font-family: 'Verdana';
        font-size: 1rem !important;
        line-height: 1.5rem;
        letter-spacing: 0.00em;
        font-weight: 500;
        color: #5a575d;
        text-transform: capitalize; }
        @media (min-width: 768px) {
          .faq-block .accordion dt button {
            font-size: 1.125rem !important;
            line-height: 1.6875rem; } }
        .faq-block .accordion dt button::before {
          background: url(../img/dropdown-caret.png) no-repeat 80% 50%/12px !important;
          height: 12px !important;
          top: 2.1875rem; }
        .faq-block .accordion dt button::after {
          background: none !important; }
        .faq-block .accordion dt button[aria-expanded="true"]::before {
          transform: translate(-100%, -50%) rotate(180deg); }
    .faq-block .accordion dd {
      padding-top: 0; }
      .faq-block .accordion dd p {
        font-family: 'Verdana'; }

.interior-hero-content {
  margin-top: 2rem; }
  .interior-hero-content .hero-cnt .bullets {
    display: none; }
  @media (min-width: 992px) {
    .interior-hero-content {
      margin-top: 3rem; }
      .interior-hero-content h1 {
        margin-bottom: 1.5rem; }
      .interior-hero-content .hero-cnt {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: flex-start; }
        .interior-hero-content .hero-cnt .desc {
          width: 57%;
          margin-right: 2rem; }
        .interior-hero-content .hero-cnt .bullets {
          display: block;
          width: 40%; }
          .interior-hero-content .hero-cnt .bullets li {
            margin: 0;
            padding: 0 0 0 0.625rem; }
            .interior-hero-content .hero-cnt .bullets li::before {
              background-color: #5a575d; }
        .interior-hero-content .hero-cnt .btn-primary {
          justify-self: start;
          align-self: center; } }

.view-by h2 {
  color: #525355;
  margin: 0 0 1.8125rem;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.8125rem;
  text-align: left;
  text-transform: capitalize; }
  @media (min-width: 768px) {
    .view-by h2 {
      margin: 0 0 2rem;
      font-size: 1.5rem;
      line-height: 2.375rem; } }

.view-by .view-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
  grid-template-rows: auto; }
  @media (min-width: 768px) {
    .view-by .view-cards {
      grid-template-columns: 1fr 1fr 1fr 1fr;
      column-gap: 1rem;
      row-gap: 1rem; } }
  @media (min-width: 992px) {
    .view-by .view-cards {
      column-gap: 2rem;
      row-gap: 2rem; } }
  .view-by .view-cards .view-card {
    margin: 0; }
    .view-by .view-cards .view-card a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none; }
      .view-by .view-cards .view-card a .img-w {
        position: relative;
        width: 100%;
        padding: 98% 0 0;
        overflow: hidden;
        display: block;
        margin: 0 0 0.5rem; }
        @media (min-width: 768px) {
          .view-by .view-cards .view-card a .img-w {
            margin: 0 0 1.5rem;
            display: block; } }
        .view-by .view-cards .view-card a .img-w picture, .view-by .view-cards .view-card a .img-w img {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          object-fit: cover;
          height: 100%;
          display: block; }
      .view-by .view-cards .view-card a .cnt div {
        color: #eacb86;
        font-weight: 600;
        margin: 0;
        text-align: center;
        font-size: 0.875rem;
        line-height: 1.25rem;
        text-transform: capitalize; }
        @media (min-width: 768px) {
          .view-by .view-cards .view-card a .cnt div {
            font-size: 1rem;
            line-height: 1.5rem; } }
      .view-by .view-cards .view-card a:hover .cnt div, .view-by .view-cards .view-card a:focus .cnt div {
        color: #f0d9a8;
        text-decoration: underline; }

.directions-wrapper h2 {
  margin: 0 0 1.5rem;
  text-align: left; }
  @media (min-width: 768px) {
    .directions-wrapper h2 {
      margin: 0 0 2rem; } }

.directions-wrapper .directions-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 1.5rem; }
  @media (min-width: 768px) {
    .directions-wrapper .directions-list {
      grid-template-columns: 1fr 1fr;
      column-gap: 1rem;
      row-gap: 1rem; } }
  @media (min-width: 992px) {
    .directions-wrapper .directions-list {
      grid-template-columns: 1fr 1fr 1fr;
      column-gap: 2rem;
      row-gap: 0.75rem; } }
  .directions-wrapper .directions-list .direction-card {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
    .directions-wrapper .directions-list .direction-card .img-w {
      margin: 0 0 1rem;
      padding: 70% 0 0;
      position: relative;
      overflow: hidden; }
      @media (min-width: 768px) {
        .directions-wrapper .directions-list .direction-card .img-w {
          margin: 0 0 1.5rem; } }
      .directions-wrapper .directions-list .direction-card .img-w img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        height: 100%; }
    .directions-wrapper .directions-list .direction-card .cnt .step {
      margin-bottom: 0.5rem;
      font-weight: 500;
      font-size: 1rem;
      line-height: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #ef9662; }
      @media (min-width: 768px) {
        .directions-wrapper .directions-list .direction-card .cnt .step {
          font-size: 1rem;
          line-height: 150%; } }
    .directions-wrapper .directions-list .direction-card .cnt .title {
      font-weight: 500;
      margin-bottom: 1rem;
      line-height: 1.5rem;
      margin: 0 0 1rem; }
      @media (min-width: 768px) {
        .directions-wrapper .directions-list .direction-card .cnt .title {
          margin-bottom: 1.125rem;
          line-height: 1.6875rem;
          margin: 0 0 1.5rem; } }
    .directions-wrapper .directions-list .direction-card .cnt ul li + li {
      margin: 0; }
    .directions-wrapper .directions-list .direction-card .cnt ol li + li {
      margin: 1.5rem 0 0; }

.tools-list h2 {
  padding: 0 0 1.5rem;
  margin: 0 0 1.5rem;
  border-bottom: 1px solid #e3e3e3;
  text-align: left; }
  @media (min-width: 768px) {
    .tools-list h2 {
      margin: 0 0 2rem; } }

@media (min-width: 768px) {
  .tools-list ul {
    column-count: 2;
    column-gap: 0; } }

.tools-list ul > a,
.tools-list ul > li {
  display: block;
  margin: 0 0 0.75rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 160%; }
  @media (min-width: 768px) {
    .tools-list ul > a,
    .tools-list ul > li {
      font-size: 1rem;
      margin: 0 0 0.5rem; } }
  .tools-list ul > a:before,
  .tools-list ul > li:before {
    background: #5a575d; }

.tools-list ul a {
  color: #5a575d;
  text-decoration: none; }
  .tools-list ul a:hover {
    color: #eab444;
    text-decoration: underline; }

.basic-text h1:not(:has(+ p)) {
  margin: 0 !important; }

.basic-text .left * {
  text-align: left; }

.basic-text .center * {
  text-align: center; }

.basic-text .right * {
  text-align: right; }

.basic-text h2, .basic-text h1 {
  line-height: 1.875rem;
  margin: 0 0 1.5rem;
  text-align: left; }

.basic-text p, .basic-text div {
  color: #525355; }

.basic-text a {
  font-weight: 500;
  text-decoration: none; }
  .basic-text a:hover, .basic-text a:focus {
    text-decoration: underline; }

.basic-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%; }
  .basic-image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%; }

@media (max-width: 767.9px) {
  .side-by-side-sec .container {
    padding: 0; } }

.side-by-side {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  margin: 1.5rem 0 0;
  background: #f6f6f6; }
  .side-by-side .img-w {
    width: 100%;
    order: 0;
    align-self: center; }
    .side-by-side .img-w img {
      height: 12rem;
      object-fit: cover; }
  .side-by-side .cnt {
    width: 100%;
    padding: 1.5rem;
    order: 1; }
    .side-by-side .cnt h3 {
      font-family: "Crimson Text", Helvetica, Arial, sans-serif;
      font-weight: 400;
      margin: 0 0 1.5rem; }
      .side-by-side .cnt h3 small {
        font-family: "Work Sans", Helvetica, Arial, sans-serif;
        font-size: 0.875rem; }
      @media (min-width: 768px) {
        .side-by-side .cnt h3 {
          font-size: 1.5rem; } }
  .side-by-side.w-facts .img-w {
    position: relative;
    padding-top: 100%;
    overflow: hidden; }
    .side-by-side.w-facts .img-w .img-cnt {
      width: 80%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2; }
      .side-by-side.w-facts .img-w .img-cnt h2, .side-by-side.w-facts .img-w .img-cnt p {
        color: #fff;
        text-align: center; }
      .side-by-side.w-facts .img-w .img-cnt h2 small {
        color: #eab444; }
      @media (max-width: 767.9px) {
        .side-by-side.w-facts .img-w .img-cnt h2 {
          margin-bottom: 1.25rem; }
        .side-by-side.w-facts .img-w .img-cnt p {
          margin: 0; } }
    .side-by-side.w-facts .img-w::before {
      content: "";
      width: 100%;
      height: 100%;
      background-color: rgba(29, 29, 33, 0.75);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1; }
    .side-by-side.w-facts .img-w img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  @media (min-width: 768px) {
    .side-by-side .img-w {
      order: 0; }
      .side-by-side .img-w img {
        height: 15.625rem; }
    .side-by-side .cnt {
      align-self: center;
      order: 1;
      padding: 4rem; }
      .side-by-side .cnt h2 {
        font-size: 1.25rem; }
    .side-by-side.w-facts .img-w {
      padding: 0;
      width: 54.17%;
      align-self: auto; }
      .side-by-side.w-facts .img-w .img-cnt {
        width: 65%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        .side-by-side.w-facts .img-w .img-cnt h2, .side-by-side.w-facts .img-w .img-cnt p {
          color: #fff;
          text-align: left; }
    .side-by-side.w-facts .cnt {
      width: 45.83%;
      align-self: stretch;
      padding: 3.75rem 3rem;
      display: flex;
      flex-flow: column wrap; }
      .side-by-side.w-facts .cnt .fact {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        margin: 0; }
        .side-by-side.w-facts .cnt .fact .fact-img {
          max-width: 3rem;
          height: 3rem;
          margin-right: 1rem; }
          .side-by-side.w-facts .cnt .fact .fact-img > img {
            width: 100%;
            height: auto; }
        .side-by-side.w-facts .cnt .fact .fact-cnt {
          width: 80%;
          margin-top: 0.5rem;
          text-align: left; }
          .side-by-side.w-facts .cnt .fact .fact-cnt h3 {
            margin-bottom: 0.75rem;
            font-weight: 600; }
    .side-by-side.alt .img-w {
      order: 2; } }
  @media (min-width: 992px) {
    .side-by-side .img-w {
      width: 58.33%; }
      .side-by-side .img-w img {
        height: 23rem; }
    .side-by-side .cnt {
      width: 41.67%;
      padding: 0 2rem; } }
  @media (min-width: 1200px) {
    .side-by-side .cnt {
      padding: 2.5rem; }
      .side-by-side .cnt h2 {
        font-size: 1.625rem; } }
  @media (min-width: 1425px) {
    .side-by-side .cnt {
      padding: 0.625rem 3.25rem; } }

.side-by-side-hero {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  background: #5a575d;
  margin-bottom: 2.5rem; }
  @media (min-width: 992px) {
    .side-by-side-hero {
      margin-bottom: 4.5rem; } }
  @media (min-width: 998px) {
    .side-by-side-hero {
      padding-top: 5rem;
      padding-bottom: 5rem; } }
  .side-by-side-hero.dark {
    background: #5a575d; }
    .side-by-side-hero.dark .side-by-side * {
      color: #fff; }
  .side-by-side-hero.white {
    background: #fff; }
    .side-by-side-hero.white .side-by-side * {
      color: #5a575d; }
  .side-by-side-hero .side-by-side {
    background: transparent; }
    .side-by-side-hero .side-by-side *:not(.btn-primary) {
      color: #fff; }
    .side-by-side-hero .side-by-side h1 {
      text-align: left;
      margin: 0 0 8px; }
      @media (min-width: 992px) {
        .side-by-side-hero .side-by-side h1 {
          margin-bottom: 1.5rem; } }
    @media (max-width: 997.9px) {
      .side-by-side-hero .side-by-side {
        flex-direction: column; }
        .side-by-side-hero .side-by-side .cnt {
          padding: 0; }
        .side-by-side-hero .side-by-side .btn-primary {
          margin-bottom: 2.5rem; }
        .side-by-side-hero .side-by-side .img-w {
          margin-bottom: 2rem; } }
    @media (min-width: 998px) {
      .side-by-side-hero .side-by-side {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 7.5rem;
        padding: 0; }
        .side-by-side-hero .side-by-side .img-w {
          width: 100%; }
        .side-by-side-hero .side-by-side .cnt {
          width: 100%;
          padding: 0; }
        .side-by-side-hero .side-by-side p {
          margin-bottom: 2rem; }
        .side-by-side-hero .side-by-side.alt {
          grid-template-columns: 1fr auto; }
          .side-by-side-hero .side-by-side.alt .cnt {
            grid-column-start: 1; }
          .side-by-side-hero .side-by-side.alt .img-w {
            grid-column-start: 2; } }

.side-cta .wrapper {
  display: flex;
  flex-flow: column nowrap; }
  .side-cta .wrapper .cnt h2 {
    margin: 1rem 0 0.5rem; }
  @media (min-width: 768px) {
    .side-cta .wrapper {
      flex-flow: row nowrap;
      justify-content: space-between; }
      .side-cta .wrapper .img-w {
        width: 50%; }
      .side-cta .wrapper .cnt {
        width: 40%; }
        .side-cta .wrapper .cnt h2 {
          margin: 0 0 2rem; } }

.featured-blogs-widget h2 {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 160%;
  margin: 0 0 1.5rem;
  text-align: left; }
  @media (min-width: 768px) {
    .featured-blogs-widget h2 {
      font-size: 1.5rem;
      margin: 0 0 2rem; } }

.featured-blogs-widget > div {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 2rem; }
  @media (min-width: 768px) {
    .featured-blogs-widget > div {
      grid-template-columns: 1fr 1fr 1fr;
      column-gap: 2rem; } }
  .featured-blogs-widget > div article a {
    text-decoration: none; }
    .featured-blogs-widget > div article a:hover .btn-primary, .featured-blogs-widget > div article a:focus .btn-primary {
      background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), #EAB444;
      color: #5a575d; }
    .featured-blogs-widget > div article a .img-w {
      position: relative;
      width: 100%;
      padding: 68% 0 0;
      margin: 0 0 1rem;
      overflow: hidden;
      display: block; }
      @media (min-width: 768px) {
        .featured-blogs-widget > div article a .img-w {
          display: block; } }
      .featured-blogs-widget > div article a .img-w img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        height: 100%; }
    .featured-blogs-widget > div article a h3 {
      margin: 0 0 1rem;
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 150%; }
      @media (min-width: 768px) {
        .featured-blogs-widget > div article a h3 {
          font-size: 1rem;
          line-height: 160%; } }
    .featured-blogs-widget > div article a .btn-primary {
      margin: 0; }

.column .featured-blogs-widget h2 {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 160%;
  margin: 0 0 1.5rem;
  text-align: left; }
  @media (min-width: 768px) {
    .column .featured-blogs-widget h2 {
      font-size: 1.125rem;
      margin: 0 0 1.5rem; } }

.column .featured-blogs-widget > div {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 2rem; }
  @media (min-width: 768px) {
    .column .featured-blogs-widget > div {
      grid-template-columns: 1fr;
      column-gap: 0; } }
  .column .featured-blogs-widget > div article a {
    text-decoration: none; }
    .column .featured-blogs-widget > div article a:hover .btn-primary, .column .featured-blogs-widget > div article a:focus .btn-primary {
      background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), #EAB444;
      color: #5a575d; }
    .column .featured-blogs-widget > div article a .img-w {
      position: relative;
      width: 100%;
      padding: 68% 0 0;
      margin: 0 0 1rem;
      overflow: hidden;
      display: block; }
      @media (min-width: 768px) {
        .column .featured-blogs-widget > div article a .img-w {
          display: block; } }
      .column .featured-blogs-widget > div article a .img-w img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        height: 100%; }
    .column .featured-blogs-widget > div article a h3 {
      margin: 0 0 1rem;
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 150%; }
      @media (min-width: 768px) {
        .column .featured-blogs-widget > div article a h3 {
          font-size: 0.875rem;
          line-height: 150%; } }
    .column .featured-blogs-widget > div article a .btn-primary {
      margin: 0;
      width: 100%; }

.w-featured-video-modal-list h2 {
  color: #525355;
  margin: 0 0 1rem;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.8125rem;
  text-align: left;
  text-transform: capitalize; }
  @media (min-width: 768px) {
    .w-featured-video-modal-list h2 {
      margin: 0 0 2rem;
      font-size: 1.5rem;
      line-height: 2.375rem; } }

.w-featured-video-modal-list .w-featured-video-modal-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  margin: 0 0 2rem; }
  @media (min-width: 768px) {
    .w-featured-video-modal-list .w-featured-video-modal-wrapper {
      grid-template-columns: 1fr 1fr;
      column-gap: 1.5rem; } }
  @media (min-width: 992px) {
    .w-featured-video-modal-list .w-featured-video-modal-wrapper {
      grid-template-columns: 1.05fr 1fr;
      column-gap: 4rem;
      margin: 0 0 3rem; } }
  .w-featured-video-modal-list .w-featured-video-modal-wrapper > a {
    display: block;
    position: relative;
    margin: 0 0 1rem;
    width: 100%; }
    @media (min-width: 768px) {
      .w-featured-video-modal-list .w-featured-video-modal-wrapper > a {
        margin: 0; } }
    .w-featured-video-modal-list .w-featured-video-modal-wrapper > a:before, .w-featured-video-modal-list .w-featured-video-modal-wrapper > a:after {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      content: "";
      cursor: pointer;
      pointer-events: none; }
    .w-featured-video-modal-list .w-featured-video-modal-wrapper > a:before {
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
      width: 100%;
      z-index: 10;
      height: 100%;
      opacity: 0;
      transition: all .2s ease; }
    .w-featured-video-modal-list .w-featured-video-modal-wrapper > a:after {
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 14.25px 0 14.25px 28.5px;
      border-color: transparent transparent transparent #fff;
      z-index: 11; }
      @media (min-width: 768px) {
        .w-featured-video-modal-list .w-featured-video-modal-wrapper > a:after {
          border-width: 19px 0 19px 38px; } }
    .w-featured-video-modal-list .w-featured-video-modal-wrapper > a:hover:before, .w-featured-video-modal-list .w-featured-video-modal-wrapper > a:focus:before {
      opacity: 1; }
    .w-featured-video-modal-list .w-featured-video-modal-wrapper > a img {
      display: block;
      width: 100%;
      height: auto; }
  .w-featured-video-modal-list .w-featured-video-modal-wrapper .cnt {
    margin: 0 0 0.5rem; }
    @media (min-width: 768px) {
      .w-featured-video-modal-list .w-featured-video-modal-wrapper .cnt {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center; } }
    .w-featured-video-modal-list .w-featured-video-modal-wrapper .cnt .eyebrow {
      color: #eab444;
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 1.3125rem;
      margin: 0 0 0.5rem; }
      @media (min-width: 768px) {
        .w-featured-video-modal-list .w-featured-video-modal-wrapper .cnt .eyebrow {
          font-size: 1rem;
          line-height: 1.625rem; } }
    .w-featured-video-modal-list .w-featured-video-modal-wrapper .cnt h3 {
      color: #525355;
      margin: 0 0 0.5rem;
      font-family: "Crimson Text", Helvetica, Arial, sans-serif; }
      @media (min-width: 768px) {
        .w-featured-video-modal-list .w-featured-video-modal-wrapper .cnt h3 {
          margin: 0 0 1rem; } }
    .w-featured-video-modal-list .w-featured-video-modal-wrapper .cnt p {
      color: #525355;
      font-weight: 400;
      font-size: 0.875rem;
      line-height: 1.375rem;
      margin: 0; }
      @media (min-width: 768px) {
        .w-featured-video-modal-list .w-featured-video-modal-wrapper .cnt p {
          font-size: 1rem;
          line-height: 1.625rem; } }

.w-featured-video-modal-list .w-video-modal-list-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 1rem; }
  @media (min-width: 768px) {
    .w-featured-video-modal-list .w-video-modal-list-wrapper {
      grid-template-columns: 1fr 1fr 1fr 1fr;
      column-gap: 1rem; } }
  @media (min-width: 992px) {
    .w-featured-video-modal-list .w-video-modal-list-wrapper {
      column-gap: 2rem;
      row-gap: 1.5rem; } }
  .w-featured-video-modal-list .w-video-modal-list-wrapper article {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%; }
    @media (min-width: 768px) {
      .w-featured-video-modal-list .w-video-modal-list-wrapper article {
        flex-direction: column; } }
    .w-featured-video-modal-list .w-video-modal-list-wrapper article > a {
      display: block;
      position: relative;
      width: 50%;
      margin: 0 0.5rem 0 0; }
      @media (min-width: 768px) {
        .w-featured-video-modal-list .w-video-modal-list-wrapper article > a {
          width: 100%;
          margin: 0 0 0.75rem; } }
      .w-featured-video-modal-list .w-video-modal-list-wrapper article > a:before, .w-featured-video-modal-list .w-video-modal-list-wrapper article > a:after {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        content: "";
        cursor: pointer;
        pointer-events: none; }
      .w-featured-video-modal-list .w-video-modal-list-wrapper article > a:before {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
        width: 100%;
        z-index: 10;
        height: 100%;
        opacity: 0;
        transition: all .2s ease; }
      .w-featured-video-modal-list .w-video-modal-list-wrapper article > a:after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 0 10px 20px;
        border-color: transparent transparent transparent #fff;
        z-index: 11; }
        @media (min-width: 768px) {
          .w-featured-video-modal-list .w-video-modal-list-wrapper article > a:after {
            border-width: 15px 0 15px 30px; } }
      .w-featured-video-modal-list .w-video-modal-list-wrapper article > a:hover:before, .w-featured-video-modal-list .w-video-modal-list-wrapper article > a:focus:before {
        opacity: 1; }
      .w-featured-video-modal-list .w-video-modal-list-wrapper article > a img {
        display: block;
        width: 100%;
        height: auto; }
    .w-featured-video-modal-list .w-video-modal-list-wrapper article .cnt {
      width: 50%;
      margin: 0 0 0 0.5rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center; }
      @media (min-width: 768px) {
        .w-featured-video-modal-list .w-video-modal-list-wrapper article .cnt {
          width: 100%;
          margin: 0; } }
      .w-featured-video-modal-list .w-video-modal-list-wrapper article .cnt h3 {
        color: #5a575d;
        font-weight: 500;
        font-size: 0.875rem;
        line-height: 1.3125rem;
        margin: 0 0 0.5rem; }
        @media (min-width: 768px) {
          .w-featured-video-modal-list .w-video-modal-list-wrapper article .cnt h3 {
            font-size: 1rem;
            line-height: 1.625rem; } }
      .w-featured-video-modal-list .w-video-modal-list-wrapper article .cnt .time {
        color: #525355;
        font-weight: 400;
        font-size: 0.75rem;
        line-height: 1.1875rem;
        margin: 0;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center; }
        @media (min-width: 768px) {
          .w-featured-video-modal-list .w-video-modal-list-wrapper article .cnt .time {
            font-size: 0.875rem;
            line-height: 1.375rem; } }
        .w-featured-video-modal-list .w-video-modal-list-wrapper article .cnt .time:before {
          display: block;
          content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxMyAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjExMjggNC40MTg2OEwxMS4yNDI1IDQuMjg5NjZDMTEuNzYxNCAzLjc3MzU1IDExLjc2MTQgMi45NTY2NSAxMS4yNDI1IDIuNDgzMjhDMTAuNzIzNiAyLjAwOTkgOS45MDIzNCAxLjk2NzE3IDkuNDI2NDMgMi40ODMyOEw5LjI5NjcyIDIuNjEyM0M4LjY5MTA5IDIuMjI1MjIgOC4wNDI1IDEuOTY3MTcgNy4zNTA5NSAxLjc5NTQxVjAuMzMzMzc0SDQuNzU2NTlWMS43NTI2N0MyLjAzMjUyIDIuMzU1MDcgMCA0Ljc2MzAzIDAgNy42NDUxOUMwIDEwLjk1NzIgMi43MjQwNyAxMy42NjY3IDYuMDUzNzcgMTMuNjY2N0M5LjM4MzQ3IDEzLjY2NjcgMTIuMTA3NSAxMC45NTcyIDEyLjEwNzUgNy42NDUxOUMxMi4wNjQ2IDYuNDQwNCAxMS43MTg0IDUuMzIxODcgMTEuMTEyOCA0LjQxODY4VjQuNDE4NjhaTTYuMDEwODEgMTEuOTQ1OEMzLjYzMjkzIDExLjk0NTggMS42ODcxNiAxMC4wMTA0IDEuNjg3MTYgNy42NDUxOUMxLjY4NzE2IDUuMjc5OTYgMy42MzI5MyAzLjM0NDU2IDYuMDEwODEgMy4zNDQ1NkM4LjM4ODY5IDMuMzQ0NTYgMTAuMzM0NSA1LjI3OTk2IDEwLjMzNDUgNy42NDUxOUMxMC4zMzQ1IDEwLjAxMDQgOC4zODg2OSAxMS45NDU4IDYuMDEwODEgMTEuOTQ1OFoiIGZpbGw9IiM1MjUzNTUiLz4KPHBhdGggZD0iTTguNTE4NDkgOC4zNzU4Nkw2LjY1OTQ4IDcuMjU3MzVWNi43ODQ3OEM2LjY1OTQ4IDYuNDQwNDQgNi4zNTcwOCA2LjEzOTY1IDYuMDEwODkgNi4xMzk2NUM1LjY2NDcgNi4xMzk2NSA1LjM2MjMgNi40NDA0NCA1LjM2MjMgNi43ODQ3OFY3Ljk4ODc2TDcuODI2OTQgOS40NTA3OUM3LjkxMzY5IDkuNDkzNTMgOC4wNDM0MSA5LjUzNzA4IDguMTczMTMgOS41MzcwOEM4LjM4OTYgOS41MzcwOCA4LjYwNTI1IDkuNDA4MDUgOC43MzQ5NyA5LjIzNjI5QzguOTA3NjUgOC45NzgyNCA4LjgyMTcxIDguNTQ3NjIgOC41MTg0OSA4LjM3NTg0VjguMzc1ODZaIiBmaWxsPSIjNTI1MzU1Ii8+CjxwYXRoIGQ9Ik02LjQ0Mjg3IDQuMjA0MTlDNi40NDI4NyA0Ljc3NzU1IDUuNTc4NjEgNC43Nzc1NSA1LjU3ODYxIDQuMjA0MTlDNS41Nzg2MSAzLjYzMDgzIDYuNDQyODcgMy42MzA4MyA2LjQ0Mjg3IDQuMjA0MTlaIiBmaWxsPSIjNTI1MzU1Ii8+CjxwYXRoIGQ9Ik0yLjk4NDQ1IDcuNjQ0MzdDMi45ODQ0NSA4LjIxNzczIDIuMTE5MzggOC4yMTc3MyAyLjExOTM4IDcuNjQ0MzdDMi4xMTkzOCA3LjA3MTAyIDIuOTg0NDUgNy4wNzEwMiAyLjk4NDQ1IDcuNjQ0MzdaIiBmaWxsPSIjNTI1MzU1Ii8+CjxwYXRoIGQ9Ik02LjQ0Mjg3IDExLjA4NTRDNi40NDI4NyAxMS42NTg4IDUuNTc4NjEgMTEuNjU4OCA1LjU3ODYxIDExLjA4NTRDNS41Nzg2MSAxMC41MTIxIDYuNDQyODcgMTAuNTEyMSA2LjQ0Mjg3IDExLjA4NTRaIiBmaWxsPSIjNTI1MzU1Ii8+CjxwYXRoIGQ9Ik05LjkwMjQxIDcuNjQ0MzdDOS45MDI0MSA4LjIxNzczIDkuMDM3MzUgOC4yMTc3MyA5LjAzNzM1IDcuNjQ0MzdDOS4wMzczNSA3LjA3MTAyIDkuOTAyNDEgNy4wNzEwMiA5LjkwMjQxIDcuNjQ0MzdaIiBmaWxsPSIjNTI1MzU1Ii8+Cjwvc3ZnPgo=");
          height: 0.875rem;
          margin: 0 0.5rem 0 0; }
          @media (min-width: 768px) {
            .w-featured-video-modal-list .w-video-modal-list-wrapper article .cnt .time:before {
              height: 1.125rem;
              margin: 0 0.375rem 0 0;
              content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNiAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjM5MSA1Ljc3MzI2TDE0LjU1MzEgNS42MTE5OEMxNS4yMDE3IDQuOTY2ODQgMTUuMjAxNyAzLjk0NTcyIDE0LjU1MzEgMy4zNTRDMTMuOTA0NSAyLjc2MjI4IDEyLjg3NzkgMi43MDg4NyAxMi4yODMgMy4zNTRMMTIuMTIwOSAzLjUxNTI5QzExLjM2MzkgMy4wMzE0NCAxMC41NTMxIDIuNzA4ODcgOS42ODg2OSAyLjQ5NDE3VjAuNjY2NjI2SDYuNDQ1NzRWMi40NDA3NUMzLjA0MDY1IDMuMTkzNzUgMC41IDYuMjAzNjkgMC41IDkuODA2MzlDMC41IDEzLjk0NjQgMy45MDUwOSAxNy4zMzMzIDguMDY3MjIgMTcuMzMzM0MxMi4yMjkzIDE3LjMzMzMgMTUuNjM0NCAxMy45NDY0IDE1LjYzNDQgOS44MDYzOUMxNS41ODA3IDguMzAwNDEgMTUuMTQ4IDYuOTAyMjUgMTQuMzkxIDUuNzczMjZWNS43NzMyNlpNOC4wMTM1MSAxNS4xODIyQzUuMDQxMTYgMTUuMTgyMiAyLjYwODk1IDEyLjc2MjkgMi42MDg5NSA5LjgwNjM5QzIuNjA4OTUgNi44NDk4NiA1LjA0MTE2IDQuNDMwNiA4LjAxMzUxIDQuNDMwNkMxMC45ODU5IDQuNDMwNiAxMy40MTgxIDYuODQ5ODYgMTMuNDE4MSA5LjgwNjM5QzEzLjQxODEgMTIuNzYyOSAxMC45ODU5IDE1LjE4MjIgOC4wMTM1MSAxNS4xODIyWiIgZmlsbD0iIzUyNTM1NSIvPgo8cGF0aCBkPSJNMTEuMTQ4MSAxMC43MTk3TDguODI0MzUgOS4zMjE1N1Y4LjczMDg2QzguODI0MzUgOC4zMDA0MiA4LjQ0NjM1IDcuOTI0NDQgOC4wMTM2MiA3LjkyNDQ0QzcuNTgwODggNy45MjQ0NCA3LjIwMjg4IDguMzAwNDIgNy4yMDI4OCA4LjczMDg2VjEwLjIzNThMMTAuMjgzNyAxMi4wNjM0QzEwLjM5MjEgMTIuMTE2OCAxMC41NTQzIDEyLjE3MTIgMTAuNzE2NCAxMi4xNzEyQzEwLjk4NyAxMi4xNzEyIDExLjI1NjYgMTIuMDA5OSAxMS40MTg3IDExLjc5NTJDMTEuNjM0NiAxMS40NzI3IDExLjUyNzEgMTAuOTM0NCAxMS4xNDgxIDEwLjcxOTdWMTAuNzE5N1oiIGZpbGw9IiM1MjUzNTUiLz4KPHBhdGggZD0iTTguNTUzNzEgNS41MDUwNUM4LjU1MzcxIDYuMjIxNzUgNy40NzMzOSA2LjIyMTc1IDcuNDczMzkgNS41MDUwNUM3LjQ3MzM5IDQuNzg4MzYgOC41NTM3MSA0Ljc4ODM2IDguNTUzNzEgNS41MDUwNVoiIGZpbGw9IiM1MjUzNTUiLz4KPHBhdGggZD0iTTQuMjMwNSA5LjgwNTM0QzQuMjMwNSAxMC41MjIgMy4xNDkxNyAxMC41MjIgMy4xNDkxNyA5LjgwNTM0QzMuMTQ5MTcgOS4wODg2NSA0LjIzMDUgOS4wODg2NSA0LjIzMDUgOS44MDUzNFoiIGZpbGw9IiM1MjUzNTUiLz4KPHBhdGggZD0iTTguNTUzNzEgMTQuMTA2NkM4LjU1MzcxIDE0LjgyMzMgNy40NzMzOSAxNC44MjMzIDcuNDczMzkgMTQuMTA2NkM3LjQ3MzM5IDEzLjM4OTkgOC41NTM3MSAxMy4zODk5IDguNTUzNzEgMTQuMTA2NloiIGZpbGw9IiM1MjUzNTUiLz4KPHBhdGggZD0iTTEyLjg3OCA5LjgwNTM0QzEyLjg3OCAxMC41MjIgMTEuNzk2NiAxMC41MjIgMTEuNzk2NiA5LjgwNTM0QzExLjc5NjYgOS4wODg2NSAxMi44NzggOS4wODg2NSAxMi44NzggOS44MDUzNFoiIGZpbGw9IiM1MjUzNTUiLz4KPC9zdmc+Cg=="); } }

.image-modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .image-modal .image-wrap {
    position: absolute;
    background: #fff;
    padding: 2rem;
    text-align: center;
    max-width: 95%;
    max-height: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
    .image-modal .image-wrap .close-modal {
      position: absolute;
      top: 0;
      right: 0;
      font-weight: bold;
      height: 2rem;
      width: 2rem;
      text-align: center;
      line-height: 0;
      border: 2px solid #eab444;
      color: #eab444;
      font-size: 1rem;
      transition: all .2s; }
      .image-modal .image-wrap .close-modal:hover, .image-modal .image-wrap .close-modal:focus {
        opacity: .5; }
    .image-modal .image-wrap img {
      width: auto;
      max-height: 80vh;
      object-fit: contain; }

.w-image-links .container {
  position: relative; }

.w-image-links h2 {
  color: #525355;
  margin: 0 0 1.8125rem;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.8125rem;
  text-align: left;
  text-transform: capitalize; }
  @media (min-width: 768px) {
    .w-image-links h2 {
      margin: 0 0 2rem;
      font-size: 1.5rem;
      line-height: 2.375rem; } }

.w-image-links .w-image-links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
  grid-template-rows: auto; }
  @media (min-width: 768px) {
    .w-image-links .w-image-links-wrapper {
      grid-template-columns: 1fr 1fr 1fr 1fr;
      column-gap: 1rem;
      row-gap: 1rem; } }
  @media (min-width: 992px) {
    .w-image-links .w-image-links-wrapper {
      column-gap: 2rem;
      row-gap: 2rem; } }
  .w-image-links .w-image-links-wrapper article {
    margin: 0; }
    .w-image-links .w-image-links-wrapper article a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none; }
      .w-image-links .w-image-links-wrapper article a img {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 0 0.5rem; }
        @media (min-width: 768px) {
          .w-image-links .w-image-links-wrapper article a img {
            margin: 0 0 1.5rem; } }
      .w-image-links .w-image-links-wrapper article a h3 {
        color: #5a575d;
        font-weight: 500;
        margin: 0;
        text-align: center;
        font-size: 1rem;
        line-height: 1.5rem;
        text-transform: uppercase; }
      .w-image-links .w-image-links-wrapper article a:hover h3, .w-image-links .w-image-links-wrapper article a:focus h3 {
        color: #5a575d;
        text-decoration: underline; }

.breadcrumb-widget {
  position: absolute;
  width: 100%;
  background: none;
  padding: 0;
  padding-top: 24px;
  z-index: 10; }
  .breadcrumb-widget .breadcrumbs {
    color: #fff; }
    .breadcrumb-widget .breadcrumbs a, .breadcrumb-widget .breadcrumbs span {
      color: #fff !important; }
    .breadcrumb-widget .breadcrumbs .is-active SPAN {
      font-weight: bold; }
  .breadcrumb-widget.no-hero .breadcrumb {
    color: #bbadaa !important; }
    .breadcrumb-widget.no-hero .breadcrumb a, .breadcrumb-widget.no-hero .breadcrumb span {
      color: #bbadaa !important; }
    .breadcrumb-widget.no-hero .breadcrumb a:hover {
      color: #eab444 !important; }
    .breadcrumb-widget.no-hero .breadcrumb.is-active span {
      color: #eab444 !important; }
  .breadcrumb-widget.blank-widget-bc {
    position: relative; }
    .breadcrumb-widget.blank-widget-bc .breadcrumb {
      color: #bbadaa !important; }
      .breadcrumb-widget.blank-widget-bc .breadcrumb a, .breadcrumb-widget.blank-widget-bc .breadcrumb span {
        color: #bbadaa !important; }
      .breadcrumb-widget.blank-widget-bc .breadcrumb a:hover {
        color: #eab444 !important; }
      .breadcrumb-widget.blank-widget-bc .breadcrumb.is-active span {
        color: #eab444 !important; }

@media (min-width: 992px) {
  .tools-needed .heading-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; } }

.tools-needed .heading-cta h2 {
  color: #393939;
  margin: 0 0 1rem;
  text-transform: capitalize;
  text-align: left;
  display: block; }
  @media (min-width: 992px) {
    .tools-needed .heading-cta h2 {
      margin: 0 0 1.5rem;
      font-size: 1.5rem; } }

.tools-needed .heading-cta a {
  color: #eab444;
  margin: 0 0 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: left;
  display: block;
  text-decoration: none;
  text-transform: capitalize; }
  .tools-needed .heading-cta a:hover, .tools-needed .heading-cta a:focus {
    color: #164d65; }
  @media (min-width: 992px) {
    .tools-needed .heading-cta a {
      margin-bottom: 0.75rem;
      font-size: 1rem;
      line-height: 1.5rem;
      text-align: right; }
      .tools-needed .heading-cta a:first-child {
        margin: 0 !important; } }

.tools-needed .subheading h3 {
  color: #393939;
  margin: 0 0 1rem;
  text-align: left;
  display: block;
  font-family: "Crimson Text", Helvetica, Arial, sans-serif; }

.tools-needed .tools {
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto; }
  @media (min-width: 768px) {
    .tools-needed .tools {
      grid-template-columns: 1fr 1fr 1fr 1fr;
      column-gap: 1rem;
      row-gap: 1rem;
      grid-template-rows: auto; } }
  @media (min-width: 992px) {
    .tools-needed .tools {
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
      column-gap: 0.5rem;
      row-gap: 0.75rem; } }
  .tools-needed .tools li {
    width: 100%;
    display: block;
    padding: 0 0 0 0.75rem; }
    .tools-needed .tools li:before {
      background: #5a575d;
      height: 0.125rem;
      width: 0.125rem;
      top: 50%; }
    @media (min-width: 768px) {
      .tools-needed .tools li {
        padding: 0.75rem;
        border: 1px solid #E4E4E4;
        box-sizing: border-box;
        margin: 0; }
        .tools-needed .tools li + li {
          margin: 0; }
        .tools-needed .tools li:before {
          display: none; } }
    .tools-needed .tools li img {
      display: none;
      max-width: 100%;
      height: 4.6875rem;
      width: auto;
      margin: 0 auto 0.5rem; }
      @media (min-width: 768px) {
        .tools-needed .tools li img {
          display: block; } }
    .tools-needed .tools li span {
      font-weight: 500;
      font-size: 0.75rem;
      line-height: 1.125rem;
      color: #5a575d;
      display: block;
      text-align: left; }
      @media (min-width: 768px) {
        .tools-needed .tools li span {
          text-align: center; } }

.tools-needed .notes {
  padding: 1rem;
  background: #f6f6f6;
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #393939;
  width: 100%; }
  @media (min-width: 992px) {
    .tools-needed .notes {
      font-size: 0.875rem;
      line-height: 1.375rem; } }

.category-cards {
  padding: 2.5rem 0 !important; }
  @media (min-width: 768px) {
    .category-cards {
      padding: 0; } }
  .category-cards h2 {
    display: none; }
    .category-cards h2 small:empty {
      display: none; }
    @media (min-width: 768px) {
      .category-cards h2 {
        display: block;
        text-align: center;
        margin: 1rem 0 1.5rem; } }
    @media (min-width: 992px) {
      .category-cards h2 {
        text-align: left;
        margin: 2rem 0 1.5rem; } }
  .category-cards .holder {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 1rem; }
    @media (min-width: 768px) {
      .category-cards .holder {
        grid-template-columns: 1fr 1fr;
        column-gap: 1rem;
        row-gap: 1.5rem; } }
    @media (min-width: 992px) {
      .category-cards .holder {
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 2rem; } }
    .category-cards .holder > div a {
      text-decoration: none; }
    .category-cards .holder > div .img-wrap {
      position: relative;
      width: 100%;
      padding: 68% 0 0;
      margin: 0 0 1rem;
      overflow: hidden; }
      .category-cards .holder > div .img-wrap img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        height: 100%; }
    .category-cards .holder > div .outer {
      padding: 0;
      width: 100%; }
      .category-cards .holder > div .outer .btn-secondary {
        width: 100%; }

.widget-projects {
  padding: 32px 0 !important; }
  .widget-projects .slick-track {
    height: 100%; }
  .widget-projects.bg-color {
    background: #f6f6f6; }
  .widget-projects .top {
    margin: auto;
    max-width: 725px;
    padding: 16px;
    text-align: left; }
    .widget-projects .top h2, .widget-projects .top .h2 {
      margin-bottom: 16px;
      text-align: left; }
  .widget-projects .grid {
    background: #fff;
    display: grid;
    grid-template-rows: repeat(1, 1fr); }
  .widget-projects .content-container {
    padding: 16px 24px; }
    @media (max-width: 767.9px) {
      .widget-projects .content-container {
        background: #f6f6f6; } }
    @media (min-width: 992px) {
      .widget-projects .content-container {
        border-left: 1px solid white; } }
  .widget-projects .image-container {
    height: 100%;
    width: 100%; }
    .widget-projects .image-container img {
      object-fit: cover;
      height: 100%;
      width: 100%;
      max-width: 100%; }
  @media (min-width: 768px) {
    .widget-projects .slick-initialized .slick-slide {
      display: flex !important; } }
  .widget-projects .slide-title {
    display: inline-block;
    font-weight: 300;
    margin-bottom: 24px; }
  .widget-projects [data-slick]:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px; }
  .widget-projects .slick-prev, .widget-projects .slick-next {
    position: absolute;
    top: 50%;
    transform-origin: top;
    z-index: 1; }
  @media (min-width: 768px) {
    .widget-projects .slick-prev {
      left: 25px; } }
  @media (min-width: 992px) {
    .widget-projects .slick-prev {
      left: -25px; } }
  .widget-projects .slick-next {
    transform: translateY(-50%); }
    @media (min-width: 768px) {
      .widget-projects .slick-next {
        right: 25px; } }
    @media (min-width: 992px) {
      .widget-projects .slick-next {
        right: -25px; } }
  .widget-projects .slick-dots {
    margin: 32px 0 0; }
  @media (max-width: 767px) {
    .widget-projects .container {
      padding: 0; }
    .widget-projects .content-container {
      order: 2; } }
  @media (min-width: 768px) {
    .widget-projects {
      padding: 80px 0 !important; }
      .widget-projects .top {
        text-align: center; }
        .widget-projects .top h2, .widget-projects .top .h2 {
          text-align: center; }
      .widget-projects .grid {
        grid-template-columns: repeat(2, 1fr); }
      .widget-projects .content-container {
        padding: 60px 80px; } }

/*  --------------------------------------------------------------------------  *\

    PAGE TEMPLATE

    Page template specific styling 

\*  --------------------------------------------------------------------------  */
.column-contianer .column-wrapper {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e3e3e3; }
  @media (min-width: 992px) {
    .column-contianer .column-wrapper {
      padding-bottom: 5.625rem; } }
  .column-contianer .column-wrapper h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem; }
    @media (min-width: 992px) {
      .column-contianer .column-wrapper h1 {
        font-size: 2.5rem;
        margin-bottom: 3rem; } }
  .column-contianer .column-wrapper form {
    margin-top: 2.625rem; }
  @media (min-width: 768px) {
    .column-contianer .column-wrapper {
      display: grid;
      grid-template-columns: 3fr 1fr;
      column-gap: 3.75rem; } }
  @media (min-width: 992px) {
    .column-contianer .column-wrapper {
      column-gap: 8.125rem; } }

.column-contianer .hbspt-form {
  background: #f6f6f6;
  padding: 1.25rem;
  margin-bottom: 2.5rem; }
  @media (min-width: 768px) {
    .column-contianer .hbspt-form {
      margin: 0;
      padding: 2.5rem; } }

@media (min-width: 768px) {
  .two-columns .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem; } }

@media (min-width: 992px) {
  .two-columns .container {
    column-gap: 2rem; } }

.hbspt-form .inputs-list {
  list-style: none;
  margin-bottom: 16px;
  margin-top: 16px; }
  .hbspt-form .inputs-list li {
    padding: 0; }
    .hbspt-form .inputs-list li:before {
      content: none; }
  .hbspt-form .inputs-list .hs-input {
    margin-right: 4px; }

.hbspt-form .hs-field-desc {
  color: #7C98B6;
  margin-bottom: 8px; }

.hbspt-form fieldset {
  max-width: none !important; }

.hbspt-form img {
  max-width: 500px !important; }

.hbspt-form label {
  margin-top: 16px;
  text-align: left; }

.hbspt-form .hs-form-field {
  margin-top: 16px;
  text-align: left; }

.hbspt-form .input {
  margin-right: 16px !important; }

.hbspt-form .input > .hs-input {
  height: 40px;
  padding: 9px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #33475b;
  background-color: #f5f8fa;
  border: 1px solid #cbd6e2;
  width: 100%; }

.hbspt-form .hs-error-msg {
  color: red; }

.hbspt-form hr {
  margin: 16px 0 !important; }

.hbspt-form .form-columns-1 {
  margin-bottom: 16px; }

.hbspt-form .hs-button.primary {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 1.75rem;
  margin: 0;
  border: 0.125rem solid currentColor;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.21429;
  text-align: center;
  background: #1684b4;
  border-color: #1684b4;
  color: #fff;
  text-transform: capitalize; }

.hbspt-form h2 {
  margin-top: 32px; }

.groove-pdp .std-form {
  display: none; }

@media (min-width: 768px) and (max-width: 998px) {
  .groove-pdp .product-view {
    margin: 0 !important; } }

.groove-pdp .form-panel .opts-swatch, .groove-pdp .form-column .opts-swatch {
  margin-top: 0 !important; }

.groove-pdp .form-sample .sampleSize {
  margin-top: 24px !important; }

.groove-pdp #errorSevenMessage {
  position: absolute;
  color: red;
  bottom: 77px;
  width: 150px;
  left: 135px;
  font-size: 0.875rem; }
  @media (min-width: 992px) {
    .groove-pdp #errorSevenMessage {
      left: 0;
      width: 120px;
      bottom: -75px; } }

@media (min-width: 768px) and (max-width: 997px) {
  .groove-pdp .product-view {
    margin: 0 !important; } }

.groove-pdp .account-for-waste {
  margin-top: 16px;
  font-size: 14px; }
  .groove-pdp .account-for-waste input {
    width: 18px;
    height: 18px;
    padding: 4px;
    vertical-align: middle;
    transition: background-color 0.3s;
    border-color: #545454; }
    .groove-pdp .account-for-waste input:checked {
      background-color: #5a575d;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="16" viewBox="0 0 20 16" fill="none"><path d="M6.65354 15.3543L0 8.66142L1.9685 6.69291L6.65354 11.3386L18.0315 0L20 2.00787L6.65354 15.3543Z" fill="white"/></svg>');
      background-repeat: no-repeat;
      background-position: center;
      background-size: 14px;
      padding: 2px; }

.groove-pdp[data-variants="false"] hr {
  display: none; }

.groove-pdp hr {
  background: #D5D7DA;
  margin: 0; }

.groove-pdp .multiple-payments {
  border-top: 1px solid #D5D7DA;
  padding: 0.5rem 0 0; }

.groove-pdp .buttons-wrapper {
  display: none; }

.groove-pdp .product-view .sku {
  color: #5a575d;
  font-size: 1rem; }

.groove-pdp .product-view h1, .groove-pdp .product-view .h1 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3; }

.groove-pdp .product-view .title {
  margin-bottom: 0.75rem; }
  .groove-pdp .product-view .title .sup {
    font-size: 12px;
    vertical-align: super; }
  @media (min-width: 992px) {
    .groove-pdp .product-view .title {
      padding: 0 1.5rem; } }
  .groove-pdp .product-view .title p {
    margin-bottom: 0; }
  @media (min-width: 992px) {
    .groove-pdp .product-view .title {
      background: #F4F4F4;
      margin-bottom: 0;
      padding-bottom: 1rem; }
      .groove-pdp .product-view .title h2, .groove-pdp .product-view .title .sku, .groove-pdp .product-view .title .ratings {
        display: none; } }

.groove-pdp .product-view .ratings {
  margin-bottom: 0.5rem; }
  .groove-pdp .product-view .ratings path {
    fill: #eab444 !important; }

.groove-pdp .product-view .price {
  margin-bottom: 0.25rem;
  display: inline-block;
  font-size: 1.125rem; }
  .groove-pdp .product-view .price .sup {
    font-size: 7px; }
    @media (min-width: 992px) {
      .groove-pdp .product-view .price .sup {
        font-size: 12px; } }
  .groove-pdp .product-view .price small {
    font-size: 0.875rem;
    font-style: normal;
    color: #1B1F2A;
    text-transform: lowercase; }
  @media (min-width: 992px) {
    .groove-pdp .product-view .price {
      padding-top: 2rem;
      font-size: 1.75rem; } }

.groove-pdp .product-view #product_just_stars .SA__review_widget_item .SA__total_reviews a, .groove-pdp .product-view #questions-heading {
  font-size: 13px;
  text-decoration: none;
  color: #5a575d; }

.groove-pdp .product-view #product_just_stars .SA__review_widget_item .SA__total_reviews a:after {
  content: "|";
  margin-left: 6px; }

.groove-pdp .product-view .gallery-wrap .gallery {
  margin-top: 0;
  display: flex;
  flex-direction: column; }
  @media (min-width: 992px) {
    .groove-pdp .product-view .gallery-wrap .gallery {
      display: grid;
      grid-template-columns: 64px auto;
      column-gap: 2rem;
      position: relative; }
      .groove-pdp .product-view .gallery-wrap .gallery.gallery-single {
        grid-template-columns: 1fr !important; }
        .groove-pdp .product-view .gallery-wrap .gallery.gallery-single .product-image {
          grid-column: 1 / 3; }
        .groove-pdp .product-view .gallery-wrap .gallery.gallery-single .alt-container {
          grid-column: 1 / 3; }
        .groove-pdp .product-view .gallery-wrap .gallery.gallery-single .thumbnails {
          display: none !important; }
      .groove-pdp .product-view .gallery-wrap .gallery .slick-arrow {
        border-radius: 0;
        height: 2rem;
        width: 2rem;
        background-color: transparent; }
        .groove-pdp .product-view .gallery-wrap .gallery .slick-arrow:hover {
          opacity: 0.8; }
        .groove-pdp .product-view .gallery-wrap .gallery .slick-arrow[aria-disabled="true"] {
          opacity: 0.3; }
        .groove-pdp .product-view .gallery-wrap .gallery .slick-arrow.slick-next {
          bottom: 24px;
          transform: rotate(90deg); }
        .groove-pdp .product-view .gallery-wrap .gallery .slick-arrow.slick-prev {
          top: -48px;
          z-index: 2;
          transform: rotate(90deg); }
      .groove-pdp .product-view .gallery-wrap .gallery .arrow {
        display: block;
        position: absolute;
        border-radius: 0;
        background-color: #F4F4F4; }
        .groove-pdp .product-view .gallery-wrap .gallery .arrow span {
          display: none; }
      .groove-pdp .product-view .gallery-wrap .gallery .arrow.next, .groove-pdp .product-view .gallery-wrap .gallery .slick-next {
        background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="brrn-caret"><path id="Vector" d="M8.03258 19.9574C8.22008 20.1449 8.4751 20.2509 8.74039 20.2509C9.00569 20.2509 9.25978 20.145 9.44726 19.9574L16.6969 12.7078H16.6979C16.8854 12.5203 16.9913 12.2653 16.9913 12C16.9913 11.7347 16.8854 11.4796 16.6979 11.2922L9.4482 4.04247H9.44726C9.05726 3.65153 8.42352 3.65153 8.03258 4.04247C7.64165 4.43341 7.64165 5.06715 8.03258 5.45715L14.5755 12L8.03258 18.5429C7.84508 18.7304 7.73914 18.9845 7.73914 19.2498C7.73914 19.5151 7.84507 19.7701 8.03258 19.9576V19.9574Z" fill="%231B1F2A"/></g></svg>');
        background-repeat: no-repeat;
        background-position: center; }
      .groove-pdp .product-view .gallery-wrap .gallery .arrow.prev, .groove-pdp .product-view .gallery-wrap .gallery .slick-prev {
        background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="brrn-caret"><path id="Vector" d="M15.9674 4.04255C15.7799 3.85505 15.5249 3.7491 15.2596 3.7491C14.9943 3.7491 14.7402 3.85504 14.5527 4.04255L7.30306 11.2922L7.30212 11.2922C7.11462 11.4797 7.00867 11.7347 7.00867 12C7.00867 12.2653 7.11461 12.5204 7.30212 12.7078L14.5518 19.9575L14.5527 19.9575C14.9427 20.3485 15.5765 20.3485 15.9674 19.9575C16.3584 19.5666 16.3584 18.9329 15.9674 18.5428L9.42454 12L15.9674 5.45709C16.1549 5.26959 16.2609 5.01554 16.2609 4.75022C16.2609 4.4849 16.1549 4.2299 15.9674 4.04241L15.9674 4.04255Z" fill="%231B1F2A"/></g></svg>');
        background-repeat: no-repeat;
        background-position: center; }
      .groove-pdp .product-view .gallery-wrap .gallery .product-image {
        grid-column-start: 2; } }
  @media (min-width: 992px) and (min-width: 768px) {
    .groove-pdp .product-view .gallery-wrap .gallery .pdp-slick-dots {
      display: none; } }
  @media (min-width: 992px) {
      .groove-pdp .product-view .gallery-wrap .gallery .thumbnails {
        grid-column-start: 1;
        grid-row-start: 1;
        width: 100%;
        flex-direction: column;
        display: none;
        align-items: center;
        justify-content: center;
        position: static; }
        .groove-pdp .product-view .gallery-wrap .gallery .thumbnails.slick-initialized {
          display: flex; }
        .groove-pdp .product-view .gallery-wrap .gallery .thumbnails a {
          padding: 0;
          transition: none;
          margin-bottom: 14px; }
        .groove-pdp .product-view .gallery-wrap .gallery .thumbnails .thumbnail {
          height: 48px !important;
          width: 60px !important;
          justify-content: center;
          margin: 0 0 14px !important; }
          .groove-pdp .product-view .gallery-wrap .gallery .thumbnails .thumbnail picture, .groove-pdp .product-view .gallery-wrap .gallery .thumbnails .thumbnail img {
            height: 48px !important; }
        .groove-pdp .product-view .gallery-wrap .gallery .thumbnails .slick-track {
          flex-direction: column; }
        .groove-pdp .product-view .gallery-wrap .gallery .thumbnails .slick-list {
          width: auto;
          position: relative; }
          .groove-pdp .product-view .gallery-wrap .gallery .thumbnails .slick-list:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(178deg, rgba(255, 255, 255, 0) 86.03%, #FFF 97.5%);
            pointer-events: none;
            /* Prevent interaction with the overlay */
            z-index: 2; } }
  @media (min-width: 768px) {
    .groove-pdp .product-view .gallery-wrap .gallery .slick-prev {
      top: -18px !important; } }
  @media (min-width: 1350px) {
    .groove-pdp .product-view .gallery-wrap .gallery {
      margin-top: 0; }
      .groove-pdp .product-view .gallery-wrap .gallery .slick-prev {
        top: -24px !important; }
      .groove-pdp .product-view .gallery-wrap .gallery .slick-next {
        bottom: 56px !important; } }
  @media (min-width: 1600px) {
    .groove-pdp .product-view .gallery-wrap .gallery .slick-prev {
      top: 0px !important; }
    .groove-pdp .product-view .gallery-wrap .gallery .slick-next {
      bottom: 80px !important; } }
  .groove-pdp .product-view .gallery-wrap .gallery .thumbnails {
    order: 0; }
    @media (min-width: 992px) {
      .groove-pdp .product-view .gallery-wrap .gallery .thumbnails {
        margin-top: 2rem; } }
    .groove-pdp .product-view .gallery-wrap .gallery .thumbnails .slick-arrow {
      position: absolute; }
    @media (max-width: 767.9px) {
      .groove-pdp .product-view .gallery-wrap .gallery .thumbnails img {
        cursor: zoom-in;
        transition: transform 0.3s ease; }
        .groove-pdp .product-view .gallery-wrap .gallery .thumbnails img:active {
          transform: scale(1.8); } }
  .groove-pdp .product-view .gallery-wrap .gallery .alt-container {
    order: 1;
    position: static;
    margin-left: 12px;
    margin-top: 4px; }
    @media (min-width: 992px) {
      .groove-pdp .product-view .gallery-wrap .gallery .alt-container {
        grid-column: 2 / span 1; } }
  .groove-pdp .product-view .gallery-wrap .gallery .pdp-slick-dots {
    order: 2; }
    @media (min-width: 992px) {
      .groove-pdp .product-view .gallery-wrap .gallery .pdp-slick-dots {
        grid-column: 2 / span 1; } }
    .groove-pdp .product-view .gallery-wrap .gallery .pdp-slick-dots li button {
      background: #D5D7DA; }
    .groove-pdp .product-view .gallery-wrap .gallery .pdp-slick-dots .slick-active button {
      background: #818486;
      scale: 1.4; }
  .groove-pdp .product-view .gallery-wrap .gallery .badge-product {
    top: 0; }

.groove-pdp .product-view .gallery-wrap {
  margin-bottom: 0; }

.groove-pdp .product-view .opts-swatch {
  margin-top: 1.5rem; }
  .groove-pdp .product-view .opts-swatch p {
    font-size: 0.875rem; }
    .groove-pdp .product-view .opts-swatch p span {
      color: #5a575d; }
  .groove-pdp .product-view .opts-swatch .swatch > span {
    border-color: transparent;
    background: transparent;
    box-shadow: none; }
  .groove-pdp .product-view .opts-swatch input:checked + .swatch > span:not(.title) {
    border: 2px solid #1B1F2A; }
  .groove-pdp .product-view .opts-swatch label {
    margin-top: 0 !important;
    width: 100%;
    min-width: 4.5rem; }
    @media (min-width: 992px) {
      .groove-pdp .product-view .opts-swatch label {
        width: 4.875rem; } }
    .groove-pdp .product-view .opts-swatch label:hover {
      box-shadow: none; }
    .groove-pdp .product-view .opts-swatch label span.form-option-image > img {
      border: none !important;
      margin: 0 auto; }
      @media (min-width: 992px) {
        .groove-pdp .product-view .opts-swatch label span.form-option-image > img {
          width: 4.375rem;
          height: 3.4375rem; } }
    .groove-pdp .product-view .opts-swatch label span.form-option-image {
      padding: 4px !important;
      height: fit-content; }
      @media (min-width: 992px) {
        .groove-pdp .product-view .opts-swatch label span.form-option-image {
          padding: 0.125rem !important; } }

.groove-pdp .product-view .option-group {
  padding-bottom: 1rem; }

.groove-pdp .product-view .custom-fields {
  margin-top: 1.5rem;
  display: block;
  border-top: 1px solid #D5D7DA;
  border-bottom: 1px solid #D5D7DA;
  padding: 1.5rem 0; }
  .groove-pdp .product-view .custom-fields a {
    color: #5a575d; }
  .groove-pdp .product-view .custom-fields li::before {
    background: #5a575d; }
  .groove-pdp .product-view .custom-fields li + li {
    margin: 0.25rem 0 0; }
  .groove-pdp .product-view .custom-fields li, .groove-pdp .product-view .custom-fields span {
    font-size: 0.875rem; }

.groove-pdp .product-view .details-wrap #availableColors {
  margin-top: 0; }

.groove-pdp .product-view .details-wrap .option-group {
  padding-top: 0.75rem; }
  .groove-pdp .product-view .details-wrap .option-group select {
    background-color: white; }

@media (min-width: 992px) {
  .groove-pdp .product-view .details-wrap {
    padding: 0 2rem; }
    .groove-pdp .product-view .details-wrap .closer-look {
      display: inline-block; }
    .groove-pdp .product-view .details-wrap .sample-container {
      margin-top: 1rem; } }

@media (max-width: 991.9px) {
  .groove-pdp .product-view .details-wrap .options fieldset label {
    margin-left: 0; }
    .groove-pdp .product-view .details-wrap .options fieldset label:nth-of-type(2) {
      margin-right: 8px; } }

.groove-pdp .product-view fieldset.form-field.fire .label, .groove-pdp .product-view fieldset.form-field.radio .label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #5a575d; }

@media (min-width: 992px) {
  .groove-pdp .product-view fieldset.form-field.fire label, .groove-pdp .product-view fieldset.form-field.radio label {
    margin-left: 0 !important;
    margin-right: 8px !important; } }

.groove-pdp .product-view .sample-container {
  border-top: 1px solid #D5D7DA;
  padding: 1.5rem 0 1.5rem;
  margin-bottom: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: row wrap;
  column-gap: 0.5rem; }
  @media (min-width: 992px) {
    .groove-pdp .product-view .sample-container {
      margin-top: 0 !important; } }
  .groove-pdp .product-view .sample-container p {
    margin-bottom: 0;
    font-weight: 600; }
  .groove-pdp .product-view .sample-container a {
    font-size: 0.875rem;
    font-weight: 600; }

.groove-pdp .product-view table {
  display: none; }

.groove-pdp .product-view .quantity {
  margin-top: 1rem; }
  .groove-pdp .product-view .quantity .form-label {
    display: none; }

.groove-pdp .product-view .swal2-container, .groove-pdp .product-view #groove-calculator {
  margin-top: 0 !important;
  border-top: 1px solid #D5D7DA;
  visibility: visible;
  height: auto;
  position: static;
  background: #fff;
  margin: 1.125rem 0 1rem;
  padding: 0; }
  .groove-pdp .product-view .swal2-container fieldset.form-field.radio, .groove-pdp .product-view #groove-calculator fieldset.form-field.radio {
    justify-content: flex-start; }
    @media (min-width: 992px) {
      .groove-pdp .product-view .swal2-container fieldset.form-field.radio, .groove-pdp .product-view #groove-calculator fieldset.form-field.radio {
        display: inline-flex;
        justify-content: flex-end;
        float: right; } }
  @media (min-width: 992px) {
    .groove-pdp .product-view .swal2-container .calculate-by, .groove-pdp .product-view #groove-calculator .calculate-by {
      display: inline-block; } }
  @media (min-width: 992px) {
    .groove-pdp .product-view .swal2-container, .groove-pdp .product-view #groove-calculator {
      background: #F4F4F4; } }
  .groove-pdp .product-view .swal2-container label, .groove-pdp .product-view #groove-calculator label {
    width: auto !important; }
  .groove-pdp .product-view .swal2-container .btn-secondary, .groove-pdp .product-view #groove-calculator .btn-secondary {
    width: auto;
    margin-top: 1rem; }
  .groove-pdp .product-view .swal2-container [data-clear-calculator], .groove-pdp .product-view #groove-calculator [data-clear-calculator] {
    margin-left: 16px;
    width: auto;
    text-transform: capitalize;
    color: #5a575d;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: normal; }
    @media (min-width: 992px) {
      .groove-pdp .product-view .swal2-container [data-clear-calculator], .groove-pdp .product-view #groove-calculator [data-clear-calculator] {
        position: absolute;
        right: 0;
        margin-top: 32px; } }
  .groove-pdp .product-view .swal2-container .calculator-message, .groove-pdp .product-view #groove-calculator .calculator-message {
    background: #F4F4F4;
    padding: 0.5rem 1rem;
    border: 1px solid #D5D7DA;
    margin-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-flow: row wrap;
    row-gap: 0.125rem; }
    .groove-pdp .product-view .swal2-container .calculator-message p, .groove-pdp .product-view #groove-calculator .calculator-message p {
      margin-bottom: 4px; }
      @media (min-width: 992px) {
        .groove-pdp .product-view .swal2-container .calculator-message p, .groove-pdp .product-view #groove-calculator .calculator-message p {
          margin-bottom: 0 !important; } }
      .groove-pdp .product-view .swal2-container .calculator-message p.no-of-panels, .groove-pdp .product-view #groove-calculator .calculator-message p.no-of-panels {
        width: 50%; }
      .groove-pdp .product-view .swal2-container .calculator-message p.panels-total, .groove-pdp .product-view #groove-calculator .calculator-message p.panels-total {
        width: 50%;
        text-align: right; }
      .groove-pdp .product-view .swal2-container .calculator-message p.panels-waste, .groove-pdp .product-view #groove-calculator .calculator-message p.panels-waste {
        width: 100%; }
    .groove-pdp .product-view .swal2-container .calculator-message p:last-child, .groove-pdp .product-view #groove-calculator .calculator-message p:last-child {
      display: flex;
      align-items: center;
      line-height: 0.625rem;
      column-gap: 8px; }
      .groove-pdp .product-view .swal2-container .calculator-message p:last-child span, .groove-pdp .product-view #groove-calculator .calculator-message p:last-child span {
        display: inline-flex;
        align-items: center; }
        .groove-pdp .product-view .swal2-container .calculator-message p:last-child span:first-child, .groove-pdp .product-view #groove-calculator .calculator-message p:last-child span:first-child {
          margin-top: 4px; }
    @media (min-width: 992px) {
      .groove-pdp .product-view .swal2-container .calculator-message, .groove-pdp .product-view #groove-calculator .calculator-message {
        padding: 1.25rem;
        background: white; } }
    .groove-pdp .product-view .swal2-container .calculator-message p span, .groove-pdp .product-view #groove-calculator .calculator-message p span {
      position: relative;
      display: inline-block; }
    .groove-pdp .product-view .swal2-container .calculator-message svg:nth-child(2), .groove-pdp .product-view #groove-calculator .calculator-message svg:nth-child(2) {
      width: 1rem;
      position: absolute;
      left: 5px;
      top: 0px; }
  .groove-pdp .product-view .swal2-container .swal2-content, .groove-pdp .product-view #groove-calculator .swal2-content {
    padding-top: 24px;
    text-align: left !important; }
    @media (min-width: 992px) {
      .groove-pdp .product-view .swal2-container .swal2-content, .groove-pdp .product-view #groove-calculator .swal2-content {
        background: #F4F4F4; } }
    .groove-pdp .product-view .swal2-container .swal2-content svg, .groove-pdp .product-view #groove-calculator .swal2-content svg {
      width: 1.5rem;
      height: 1.5rem; }
    .groove-pdp .product-view .swal2-container .swal2-content .cal--header, .groove-pdp .product-view #groove-calculator .swal2-content .cal--header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: start;
      align-items: start;
      flex-flow: row;
      column-gap: 0.5rem; }
      .groove-pdp .product-view .swal2-container .swal2-content .cal--header svg, .groove-pdp .product-view #groove-calculator .swal2-content .cal--header svg {
        display: none; }
        @media (min-width: 992px) {
          .groove-pdp .product-view .swal2-container .swal2-content .cal--header svg, .groove-pdp .product-view #groove-calculator .swal2-content .cal--header svg {
            display: block;
            margin-top: 0.1875rem; } }
      .groove-pdp .product-view .swal2-container .swal2-content .cal--header .please-note, .groove-pdp .product-view #groove-calculator .swal2-content .cal--header .please-note {
        margin-bottom: 1rem; }
        @media (min-width: 992px) {
          .groove-pdp .product-view .swal2-container .swal2-content .cal--header .please-note, .groove-pdp .product-view #groove-calculator .swal2-content .cal--header .please-note {
            margin-bottom: 1.5rem; } }
    .groove-pdp .product-view .swal2-container .swal2-content .cal--options p, .groove-pdp .product-view #groove-calculator .swal2-content .cal--options p {
      font-size: 0.875rem;
      margin-bottom: 0.75rem; }
    .groove-pdp .product-view .swal2-container .swal2-content .cal--options fieldset, .groove-pdp .product-view #groove-calculator .swal2-content .cal--options fieldset {
      margin-bottom: 1rem; }
    .groove-pdp .product-view .swal2-container .swal2-content h3, .groove-pdp .product-view #groove-calculator .swal2-content h3 {
      font-weight: 600;
      margin-bottom: 0;
      font-size: 0.875rem;
      line-height: normal; }
    @media (max-width: 991.9px) {
      .groove-pdp .product-view .swal2-container .swal2-content label:nth-of-type(2), .groove-pdp .product-view #groove-calculator .swal2-content label:nth-of-type(2) {
        margin-left: 10px; } }
  .groove-pdp .product-view .swal2-container .calc-form, .groove-pdp .product-view #groove-calculator .calc-form {
    text-align: left;
    display: grid;
    grid-template-columns: 8.75rem 8.75rem;
    column-gap: 1rem;
    row-gap: 0.25rem;
    width: 100%; }
    @media (min-width: 992px) {
      .groove-pdp .product-view .swal2-container .calc-form, .groove-pdp .product-view #groove-calculator .calc-form {
        column-gap: 1rem;
        grid-template-columns: 1fr 1fr; } }
    .groove-pdp .product-view .swal2-container .calc-form p, .groove-pdp .product-view #groove-calculator .calc-form p {
      grid-column: 1 / span 2;
      margin-bottom: 0.25rem;
      margin-top: 0.25rem; }
    .groove-pdp .product-view .swal2-container .calc-form > div, .groove-pdp .product-view #groove-calculator .calc-form > div {
      position: relative; }
    .groove-pdp .product-view .swal2-container .calc-form input, .groove-pdp .product-view #groove-calculator .calc-form input {
      max-width: none;
      margin: 0;
      grid-row-start: 1;
      width: 140px;
      font-size: 0.875rem; }
      @media (min-width: 992px) {
        .groove-pdp .product-view .swal2-container .calc-form input, .groove-pdp .product-view #groove-calculator .calc-form input {
          width: 100%; } }
    .groove-pdp .product-view .swal2-container .calc-form label, .groove-pdp .product-view #groove-calculator .calc-form label {
      position: absolute;
      right: 12px;
      bottom: 12px;
      font-size: 0.875rem; }

.groove-pdp .product-view [data-cart-item-add] {
  position: relative; }

@media (max-width: 767.9px) {
  .groove-pdp .product-view {
    display: flex;
    flex-direction: column; }
    .groove-pdp .product-view .desktop-title {
      order: -2; }
    .groove-pdp .product-view .gallery-wrap {
      order: -1; }
    .groove-pdp .product-view .title {
      margin-top: 2rem; } }

.groove-pdp .product-view[data-form="Beam"] .custom-fields {
  margin-top: 1.25rem; }

.groove-pdp .product-view .multiple-payments {
  background: white;
  padding-top: 0;
  border-top: none; }

@media (min-width: 768px) and (max-width: 991.9px) {
  .groove-pdp .product-view {
    display: grid;
    grid-template-columns: 350px 1fr;
    padding: 0 1rem;
    column-gap: 2rem; }
    .groove-pdp .product-view::after, .groove-pdp .product-view::before {
      display: none; }
    .groove-pdp .product-view .gallery-wrap, .groove-pdp .product-view .title, .groove-pdp .product-view .details-wrap {
      width: 100%; } }

@media (min-width: 992px) {
  .groove-pdp .product-view {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 450px;
    padding: 0 1rem;
    column-gap: 2rem; }
    .groove-pdp .product-view .gallery-wrap, .groove-pdp .product-view .title, .groove-pdp .product-view .details-wrap {
      float: unset; }
    .groove-pdp .product-view::before, .groove-pdp .product-view::after {
      display: none; }
    .groove-pdp .product-view .desktop-title {
      margin-bottom: 2rem; }
    .groove-pdp .product-view .title {
      width: 100%; }
    .groove-pdp .product-view .gallery-wrap {
      width: 100%; }
      .groove-pdp .product-view .gallery-wrap .gallery {
        top: 100px;
        position: sticky; }
    .groove-pdp .product-view .details-wrap {
      width: 100%;
      padding: 0; }
      .groove-pdp .product-view .details-wrap > .form-product {
        padding: 0 2rem 2rem;
        background: #F4F4F4; }
      .groove-pdp .product-view .details-wrap .multiple-payments {
        background: white;
        border-top: none; } }

.groove-pdp .product-view p {
  font-size: 14px; }

.groove-pdp .quantity .calculator {
  display: none; }

.groove-pdp .form-action .btn-secondary {
  display: none; }

.groove-pdp form.btn-secondary {
  margin-top: 0.625rem;
  padding: 0; }
  .groove-pdp form.btn-secondary .icon-heart {
    display: none; }

.groove-pdp .swal2-content > svg {
  float: left;
  margin-right: 4px; }

.groove-pdp .atc-wrapper {
  padding-top: 1.5rem; }

@media (max-width: 767.9px) {
  .groove-pdp .form-field.quantity {
    margin-top: 0 !important; } }

@media (min-width: 992px) {
  .groove-pdp .form-field.quantity {
    display: inline-flex;
    float: left;
    margin-right: 16px;
    margin-top: 0; }
    .groove-pdp .form-field.quantity .form-wrapper {
      margin-bottom: 30px; }
    .groove-pdp .form-field.quantity.Unassigned {
      margin-top: 0 !important; } }

.groove-pdp.groove-Unassigned .custom-fields {
  margin-top: 1rem; }

.groove-pdp.groove-Unassigned .gallery .pdp-slick-dots .slick-active button {
  scale: 1 !important; }

@media (min-width: 768px) {
  .groove-pdp.groove-Unassigned .product-view {
    margin: 0; } }

@media (min-width: 992px) {
  .groove-pdp.groove-Unassigned .product-view {
    margin: 0 -1rem; }
  .groove-pdp.groove-Unassigned .product-view {
    grid-template-rows: auto auto auto 1fr; }
  .groove-pdp.groove-Unassigned .multiple-payments {
    margin-top: 2rem; }
  .groove-pdp.groove-Unassigned .thumbnails.mobile-only {
    display: none !important; } }

.groove-panel .opts-swatch {
  margin-top: 0 !important; }

.image-wrap {
  width: 100%; }
  .image-wrap figure {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: white; }
  .image-wrap img {
    max-width: 100%;
    width: 100% !important; }

.thumbnail {
  position: relative; }

.zoom-mobile {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: white;
  border-radius: 50px;
  padding: 4px;
  border: 1px solid black;
  width: 30px;
  height: 30px; }
  .zoom-mobile svg {
    fill: black;
    width: 20px;
    height: 20px; }

.ss-recs-container img {
  aspect-ratio: 4 / 3; }

.PaypalCommerceContainer {
  width: 100%;
  display: block; }
  .PaypalCommerceContainer .PaypalCommerceInnerContainer {
    width: 100%;
    display: block;
    max-width: none; }

div.PaypalCommerceCreditInnerContainer {
  width: 100%;
  max-width: none; }

div.AmazonPayInnerContainer {
  width: 100%;
  max-width: none; }

div.GooglePayInnerContainer {
  width: 100%;
  max-width: none; }

div.PaypalCommerceVenmoInnerContainer {
  width: 100%;
  max-width: none; }

#modalpricing {
  background-color: white;
  border-radius: 4px;
  text-align: center; }
  #modalpricing p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 2rem; }
  #modalpricing .modal-close {
    top: 8px;
    transform: none;
    right: 16px;
    position: absolute; }

.ratings .group-stars .on {
  background-image: url("../icons/az-fill-star.svg"); }

.ratings .group-stars .on.half {
  background-image: url("../icons/az-half-star.svg"); }

.ratings .group-stars .off {
  background-image: url("../icons/az-stroke-star.svg"); }

.ratings .group-stars .ind_cnt {
  display: none; }

#SA_questions img.float-right {
  display: none; }

#SA_questions img.widget-view {
  display: none; }

#SA_review_wrapper li::before {
  display: none !important; }

#SA_review_wrapper li, #SA_review_wrapper span {
  line-height: 1.3 !important;
  height: auto !important; }

.SA__verified_customer img {
  width: auto;
  display: inline; }

.autocomplete-w1 a,
.answerbase-widget a {
  color: #0977a7; }

.autocomplete-w1 a:hover,
.autocomplete-w1 a:focus,
.answerbase-widget a:hover,
.answerbase-widget a:focus {
  color: #447489;
  text-decoration: underline; }

.tab-container {
  display: flex;
  justify-content: flex-start;
  margin-left: -16px; }

.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #f0f0f0;
  color: #1b1f2a;
  border: none; }

.tab-button.active {
  background-color: #ddd; }

.tab-content {
  display: none;
  padding: 0; }
  .tab-content .container {
    border-top: 1px solid #ccc;
    padding-top: 16px; }

.tab-content.active {
  display: block; }

.ratings {
  display: flex;
  align-items: center;
  column-gap: 8px; }
  .ratings .question-heading {
    margin-top: 3px;
    font-size: 10px; }

.SA__customer_images img {
  width: fit-content;
  height: auto !important;
  max-height: 250px; }

.answerbase-widget .button.secondary {
  background: #eab444 !important;
  color: #5a575d !important; }

.answerbase-widget .cell a {
  font-size: 16px;
  font-weight: 500;
  transition: all .25s;
  color: #5a575d;
  text-transform: capitalize; }

article.card .star_container {
  display: none; }

.ss-recommendations .star_container {
  display: none; }

.ss-recommendations h3.title a, article.card h3.title a {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  /* autoprefixer: off */
  overflow: hidden;
  -webkit-line-clamp: 3; }

@media (min-width: 992px) {
  body > header {
    position: relative !important; } }

section.widget-full-padding-top {
  padding-top: 2.5rem !important; }
  @media (min-width: 992px) {
    section.widget-full-padding-top {
      padding-top: 5rem !important; } }

section.widget-full-padding-bottom {
  padding-bottom: 2.5rem !important; }
  @media (min-width: 992px) {
    section.widget-full-padding-bottom {
      padding-bottom: 5rem !important; } }

section.widget-half-padding-top {
  padding-top: 1.25rem !important; }
  @media (min-width: 992px) {
    section.widget-half-padding-top {
      padding-top: 2.5rem !important; } }

section.widget-half-padding-bottom {
  padding-bottom: 1.25rem !important; }
  @media (min-width: 992px) {
    section.widget-half-padding-bottom {
      padding-bottom: 2.5rem !important; } }

section.widget-no-padding-top {
  padding-top: 0 !important; }

section.widget-no-padding-bottom {
  padding-bottom: 0 !important; }
