/**
 * CONTENTS
 *
 * GENERIC
 * Box-sizing............Better default `box-sizing`.
 * Sticky Footer.........Make Footer always stick to bottom.
 * Image Aligns..........WP specific img aligns.
 *
 * BASE
 * Typography............Base text and vertical rhythem setup.
 *
 * OBJECTS
 * Wrappers..............Wrapping and constraining elements.
 * Grid System...........Bootstrap based grid.
 *
 * COMPONENTS
 * Clearfix..............Properly clear floats.
 * Icons.................Icon Elements.
 * Buttons...............Button elements.
 * Flexbox...............Emulate modern flexbox layout.
 * Block-list............Create big blocky lists of content.
 * Matrix................Table like layouts for lists.
 * Multi-list............Multiple column lists.
 * Tables................Table Styles.
 * Forms.................Form Elements.
 * Page-head.............The main page header.
 * Navigation............Navigation elements.
 * Sub-navigation........Sub-menus and navigation
 * Masthead..............Page title/image/slideshow header block.
 * Breadcrumbs...........Breadcrumbs.
 * Pagination............Pagination.
 * Page-foot.............The main page footer.
 *
 * HOMEPAGE CONTENTS
 * Page-body.............The main page body.
 * Banner................Banner slider.
 *
 * BLOG CONTENTS
 * Post..................Blog post.
 *
 * PAGE CONTENTS
 * Post..................Page post.
 *
 * TRUMPS
 * Images................Round, Circle, Square Images.
 * Visiblity.............Make items visible.
 * Hiding................Make items invisible/hidden.
 * Screen Readers........Display for screen readers.
 * Print.................Display for printing.
 * Clears................Clearing floats.
 * Text alignment........Align text.
 * Font weights..........Adjust font weights.
 * Borders...............Add borders.
 * Add/remove margins....Remove margins.
 * Add/remove paddings...Remove padding.
 * Positioning...........float, center, and stick items.
 */




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

/**
 * Box-sizing
 */

* { box-sizing: border-box; }


/**
 * Sticky Footer
 */

html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0 0 356px; /* TODO: bottom = footer height */
  font-family: 'Roboto', sans-serif;
  color:#3d3d3d;
}

.page__footer {
    position: absolute;
    left: 0;
    bottom: 0;
    min-height: 356px; /* TODO: Update Height */
    width: 100%;
}

.wrapper{
  padding-top:120px;
  position:relative;
  z-index:5;

}


  @media (max-width:768px) {

    .wrapper{
      padding-top:0;

    }

  }

.large-texts{
  font-size:20px;
  font-weight:300;
}

.red-texts{
  color:#CF0A2C;
}



/**
 * Images
 *
 * These selectors are hard cast to img because they are only used
 * by wordpress wyswyg when adding images to content
 */

img.alignright {
    float: right;
    margin:0 0 20px 20px;
}

img.alignleft {
    float:left;
    margin:0 20px 20px 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*------------------------------------*\
    Typography / Vertical Rhythm
\*------------------------------------*/

/* TODO: Go to http://www.gridlover.net/app/ to generate vertical rhythm for website */

/*@import url(http://fonts.googleapis.com/css?family=Roboto:400,700,700italic,500italic,500,400italic,900|Roboto+Condensed:400,700italic,700,400italic);*/


@font-face {
  font-family: 'icomoon';
  src:url('../fonts/icomoon.eot?-hrf00m');
  src:url('../fonts/icomoon.eot?#iefix-hrf00m') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?-hrf00m') format('truetype'),
    url('../fonts/icomoon.woff?-hrf00m') format('woff'),
    url('../fonts/icomoon.svg?-hrf00m#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-navigation:before {
  content: "\e1f5";
}
.icon-magnifying-glass:before {

  content: "\e600";
}
.icon-mail:before {
  content: "\e601";
}
.icon-pencil:before {
  content: "\e905";
}
.icon-file-text:before {
  content: "\e922";
}
.icon-phone:before {
  content: "\e942";
}
.icon-location:before {
  content: "\e947";
}
.icon-clock:before {
  content: "\e94e";
}
.icon-calendar:before {
  content: "\e953";
}
.icon-bubble:before {
  content: "\e96b";
}
.icon-user:before {
  content: "\e971";
}
.icon-bookmark:before {
  content: "\e9d2";
}
.icon-play3:before {
  content: "\ea1c";
}
.icon-youtube:before {
  content: "\ea97";
}

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


/**
 * Wrappers
 */




.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px; /* TODO: Update paddings to match your needed grid sizing */
    padding-right: 10px;
  position:relative;
}

  @media (min-width: 600px) {
        .container { width: 580px; }
    }

    @media (min-width: 768px) {
        .container { width: 740px; }
    }

    @media (min-width: 1025px) {
        .container { width: 990px; }
    }

    @media (min-width: 1200px) {
        .container { width: 1160px; }
    }

    @media (min-width: 1366px) {
        .container { width: 1340px; }
    }



/**
 * Grid System
 *
 * Bootstrap v3.3.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 * Base setup 20px gutters
 *
 * Phones         - xxs - <  600px    ** Default **
 * Small Tablets  - xs - >=  600px
 * Tablets        - sm - >= 768px
 * Desktop        - md - >= 1025px
 * Large Desktop  - lg - >= 1200px
 * --------------------------------------------------------------------------
 * Learn more here: http://getbootstrap.com/css/#grid
 * -------------------------------------------------------------------------- */

.row {
    margin-left: -10px; /* TODO: Update margin number to match container padding */
    margin-right: -10px;
}

    [class*="col-"] {
        position: relative;
        min-height: 1px;
        padding-left: 10px;
        padding-right: 10px;
    }

/* Extra Extra small devices (devices, less than 600px) */
[class*="col-xxs-"] { float:left; }

.col-xxs-12 { width: 100%; }
.col-xxs-11 { width: 91.66666667%; }
.col-xxs-10 { width: 83.33333333%; }
.col-xxs-9  { width: 75%; }
.col-xxs-8  { width: 66.66666667%; }
.col-xxs-7  { width: 58.33333333%; }
.col-xxs-6  { width: 50%; }
.col-xxs-5  { width: 41.66666667%; }
.col-xxs-4  { width: 33.33333333%; }
.col-xxs-3  { width: 25%; }
.col-xxs-2  { width: 16.66666667%; }
.col-xxs-1  { width: 8.33333333%; }

.col-xxs-pull-12 { right: 100%; }
.col-xxs-pull-11 { right: 91.66666667%; }
.col-xxs-pull-10 { right: 83.33333333%; }
.col-xxs-pull-9  { right: 75%; }
.col-xxs-pull-8  { right: 66.66666667%; }
.col-xxs-pull-7  { right: 58.33333333%; }
.col-xxs-pull-6  { right: 50%; }
.col-xxs-pull-5  { right: 41.66666667%; }
.col-xxs-pull-4  { right: 33.33333333%; }
.col-xxs-pull-3  { right: 25%; }
.col-xxs-pull-2  { right: 16.66666667%; }
.col-xxs-pull-1  { right: 8.33333333%; }
.col-xxs-pull-0  { right: auto; }

.col-xxs-push-12 { left: 100%; }
.col-xxs-push-11 { left: 91.66666667%; }
.col-xxs-push-10 { left: 83.33333333%; }
.col-xxs-push-9  { left: 75%; }
.col-xxs-push-8  { left: 66.66666667%; }
.col-xxs-push-7  { left: 58.33333333%; }
.col-xxs-push-6  { left: 50%; }
.col-xxs-push-5  { left: 41.66666667%; }
.col-xxs-push-4  { left: 33.33333333%; }
.col-xxs-push-3  { left: 25%; }
.col-xxs-push-2  { left: 16.66666667%; }
.col-xxs-push-1  { left: 8.33333333%; }
.col-xxs-push-0  { left: auto; }

.col-xxs-offset-12 { margin-left: 100%; }
.col-xxs-offset-11 { margin-left: 91.66666667%; }
.col-xxs-offset-10 { margin-left: 83.33333333%; }
.col-xxs-offset-9  { margin-left: 75%; }
.col-xxs-offset-8  { margin-left: 66.66666667%; }
.col-xxs-offset-7  { margin-left: 58.33333333%; }
.col-xxs-offset-6  { margin-left: 50%; }
.col-xxs-offset-5  { margin-left: 41.66666667%; }
.col-xxs-offset-4  { margin-left: 33.33333333%; }
.col-xxs-offset-3  { margin-left: 25%; }
.col-xxs-offset-2  { margin-left: 16.66666667%; }
.col-xxs-offset-1  { margin-left: 8.33333333%; }
.col-xxs-offset-0  { margin-left: 0%; }

/* Extra small devices (phones, 600px and up) */
@media (min-width: 600px) {
    [class*="col-xs-"] {float:left;}

    .col-xs-12 { width: 100%; }
    .col-xs-11 { width: 91.66666667%; }
    .col-xs-10 { width: 83.33333333%; }
    .col-xs-9  { width: 75%; }
    .col-xs-8  { width: 66.66666667%; }
    .col-xs-7  { width: 58.33333333%; }
    .col-xs-6  { width: 50%; }
    .col-xs-5  { width: 41.66666667%; }
    .col-xs-4  { width: 33.33333333%; }
    .col-xs-3  { width: 25%; }
    .col-xs-2  { width: 16.66666667%; }
    .col-xs-1  { width: 8.33333333%; }

    .col-xs-pull-12 { right: 100%; }
    .col-xs-pull-11 { right: 91.66666667%; }
    .col-xs-pull-10 { right: 83.33333333%; }
    .col-xs-pull-9  { right: 75%; }
    .col-xs-pull-8  { right: 66.66666667%; }
    .col-xs-pull-7  { right: 58.33333333%; }
    .col-xs-pull-6  { right: 50%; }
    .col-xs-pull-5  { right: 41.66666667%; }
    .col-xs-pull-4  { right: 33.33333333%; }
    .col-xs-pull-3  { right: 25%; }
    .col-xs-pull-2  { right: 16.66666667%; }
    .col-xs-pull-1  { right: 8.33333333%; }
    .col-xs-pull-0  { right: auto; }

    .col-xs-push-12 { left: 100%; }
    .col-xs-push-11 { left: 91.66666667%; }
    .col-xs-push-10 { left: 83.33333333%; }
    .col-xs-push-9  { left: 75%; }
    .col-xs-push-8  { left: 66.66666667%; }
    .col-xs-push-7  { left: 58.33333333%; }
    .col-xs-push-6  { left: 50%; }
    .col-xs-push-5  { left: 41.66666667%; }
    .col-xs-push-4  { left: 33.33333333%; }
    .col-xs-push-3  { left: 25%; }
    .col-xs-push-2  { left: 16.66666667%; }
    .col-xs-push-1  { left: 8.33333333%; }
    .col-xs-push-0  { left: auto; }

    .col-xs-offset-12 { margin-left: 100%; }
    .col-xs-offset-11 { margin-left: 91.66666667%; }
    .col-xs-offset-10 { margin-left: 83.33333333%; }
    .col-xs-offset-9  { margin-left: 75%; }
    .col-xs-offset-8  { margin-left: 66.66666667%; }
    .col-xs-offset-7  { margin-left: 58.33333333%; }
    .col-xs-offset-6  { margin-left: 50%; }
    .col-xs-offset-5  { margin-left: 41.66666667%; }
    .col-xs-offset-4  { margin-left: 33.33333333%; }
    .col-xs-offset-3  { margin-left: 25%; }
    .col-xs-offset-2  { margin-left: 16.66666667%; }
    .col-xs-offset-1  { margin-left: 8.33333333%; }
    .col-xs-offset-0  { margin-left: 0%; }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    [class*="col-sm-"] {float:left;}

    .col-sm-12 { width: 100%; }
    .col-sm-11 { width: 91.66666667%; }
    .col-sm-10 { width: 83.33333333%; }
    .col-sm-9  { width: 75%; }
    .col-sm-8  { width: 66.66666667%; }
    .col-sm-7  { width: 58.33333333%; }
    .col-sm-6  { width: 50%; }
    .col-sm-5  { width: 41.66666667%; }
    .col-sm-4  { width: 33.33333333%; }
    .col-sm-3  { width: 25%; }
    .col-sm-2  { width: 16.66666667%; }
    .col-sm-1  { width: 8.33333333%; }

    .col-sm-pull-12 { right: 100%; }
    .col-sm-pull-11 { right: 91.66666667%; }
    .col-sm-pull-10 { right: 83.33333333%; }
    .col-sm-pull-9  { right: 75%; }
    .col-sm-pull-8  { right: 66.66666667%; }
    .col-sm-pull-7  { right: 58.33333333%; }
    .col-sm-pull-6  { right: 50%; }
    .col-sm-pull-5  { right: 41.66666667%; }
    .col-sm-pull-4  { right: 33.33333333%; }
    .col-sm-pull-3  { right: 25%; }
    .col-sm-pull-2  { right: 16.66666667%; }
    .col-sm-pull-1  { right: 8.33333333%; }
    .col-sm-pull-0  { right: auto; }

    .col-sm-push-12 { left: 100%; }
    .col-sm-push-11 { left: 91.66666667%; }
    .col-sm-push-10 { left: 83.33333333%; }
    .col-sm-push-9  { left: 75%; }
    .col-sm-push-8  { left: 66.66666667%; }
    .col-sm-push-7  { left: 58.33333333%; }
    .col-sm-push-6  { left: 50%; }
    .col-sm-push-5  { left: 41.66666667%; }
    .col-sm-push-4  { left: 33.33333333%; }
    .col-sm-push-3  { left: 25%; }
    .col-sm-push-2  { left: 16.66666667%; }
    .col-sm-push-1  { left: 8.33333333%; }
    .col-sm-push-0  { left: auto; }

    .col-sm-offset-12 { margin-left: 100%; }
    .col-sm-offset-11 { margin-left: 91.66666667%; }
    .col-sm-offset-10 { margin-left: 83.33333333%; }
    .col-sm-offset-9  { margin-left: 75%; }
    .col-sm-offset-8  { margin-left: 66.66666667%; }
    .col-sm-offset-7  { margin-left: 58.33333333%; }
    .col-sm-offset-6  { margin-left: 50%; }
    .col-sm-offset-5  { margin-left: 41.66666667%; }
    .col-sm-offset-4  { margin-left: 33.33333333%; }
    .col-sm-offset-3  { margin-left: 25%; }
    .col-sm-offset-2  { margin-left: 16.66666667%; }
    .col-sm-offset-1  { margin-left: 8.33333333%; }
    .col-sm-offset-0  { margin-left: 0%; }
}

/* Medium devices (desktops, 1025px and up) */
@media (min-width: 1025px) {
  [class*="col-md-"] {float:left;}

  .col-md-12 { width: 100%; }
  .col-md-11 { width: 91.66666667%; }
  .col-md-10 { width: 83.33333333%; }
  .col-md-9  { width: 75%; }
  .col-md-8  { width: 66.66666667%; }
  .col-md-7  { width: 58.33333333%; }
  .col-md-6  { width: 50%; }
  .col-md-5  { width: 41.66666667%; }
  .col-md-4  { width: 33.33333333%; }
  .col-md-3  { width: 25%; }
  .col-md-2  { width: 16.66666667%; }
  .col-md-1  { width: 8.33333333%; }

  .col-md-pull-12 { right: 100%; }
  .col-md-pull-11 { right: 91.66666667%; }
  .col-md-pull-10 { right: 83.33333333%; }
  .col-md-pull-9  { right: 75%; }
  .col-md-pull-8  { right: 66.66666667%; }
  .col-md-pull-7  { right: 58.33333333%; }
  .col-md-pull-6  { right: 50%; }
  .col-md-pull-5  { right: 41.66666667%; }
  .col-md-pull-4  { right: 33.33333333%; }
  .col-md-pull-3  { right: 25%; }
  .col-md-pull-2  { right: 16.66666667%; }
  .col-md-pull-1  { right: 8.33333333%; }
  .col-md-pull-0  { right: auto; }

  .col-md-push-12 { left: 100%; }
  .col-md-push-11 { left: 91.66666667%; }
  .col-md-push-10 { left: 83.33333333%; }
  .col-md-push-9  { left: 75%; }
  .col-md-push-8  { left: 66.66666667%; }
  .col-md-push-7  { left: 58.33333333%; }
  .col-md-push-6  { left: 50%; }
  .col-md-push-5  { left: 41.66666667%; }
  .col-md-push-4  { left: 33.33333333%; }
  .col-md-push-3  { left: 25%; }
  .col-md-push-2  { left: 16.66666667%; }
  .col-md-push-1  { left: 8.33333333%; }
  .col-md-push-0  { left: auto; }

  .col-md-offset-12 { margin-left: 100%; }
  .col-md-offset-11 { margin-left: 91.66666667%; }
  .col-md-offset-10 { margin-left: 83.33333333%; }
  .col-md-offset-9  { margin-left: 75%; }
  .col-md-offset-8  { margin-left: 66.66666667%; }
  .col-md-offset-7  { margin-left: 58.33333333%; }
  .col-md-offset-6  { margin-left: 50%; }
  .col-md-offset-5  { margin-left: 41.66666667%; }
  .col-md-offset-4  { margin-left: 33.33333333%; }
  .col-md-offset-3  { margin-left: 25%; }
  .col-md-offset-2  { margin-left: 16.66666667%; }
  .col-md-offset-1  { margin-left: 8.33333333%; }
  .col-md-offset-0  { margin-left: 0%; }

}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  [class*="col-lg-"] {float:left;}

  .col-lg-12 { width: 100%; }
  .col-lg-11 { width: 91.66666667%; }
  .col-lg-10 { width: 83.33333333%; }
  .col-lg-9  { width: 75%; }
  .col-lg-8  { width: 66.66666667%; }
  .col-lg-7  { width: 58.33333333%; }
  .col-lg-6  { width: 50%; }
  .col-lg-5  { width: 41.66666667%; }
  .col-lg-4  { width: 33.33333333%; }
  .col-lg-3  { width: 25%; }
  .col-lg-2  { width: 16.66666667%; }
  .col-lg-1  { width: 8.33333333%; }

  .col-lg-pull-12 { right: 100%; }
  .col-lg-pull-11 { right: 91.66666667%; }
  .col-lg-pull-10 { right: 83.33333333%; }
  .col-lg-pull-9  { right: 75%; }
  .col-lg-pull-8  { right: 66.66666667%; }
  .col-lg-pull-7  { right: 58.33333333%; }
  .col-lg-pull-6  { right: 50%; }
  .col-lg-pull-5  { right: 41.66666667%; }
  .col-lg-pull-4  { right: 33.33333333%; }
  .col-lg-pull-3  { right: 25%; }
  .col-lg-pull-2  { right: 16.66666667%; }
  .col-lg-pull-1  { right: 8.33333333%; }
  .col-lg-pull-0  { right: auto; }

  .col-lg-push-12 { left: 100%; }
  .col-lg-push-11 { left: 91.66666667%; }
  .col-lg-push-10 { left: 83.33333333%; }
  .col-lg-push-9  { left: 75%; }
  .col-lg-push-8  { left: 66.66666667%; }
  .col-lg-push-7  { left: 58.33333333%; }
  .col-lg-push-6  { left: 50%; }
  .col-lg-push-5  { left: 41.66666667%; }
  .col-lg-push-4  { left: 33.33333333%; }
  .col-lg-push-3  { left: 25%; }
  .col-lg-push-2  { left: 16.66666667%; }
  .col-lg-push-1  { left: 8.33333333%; }
  .col-lg-push-0  { left: auto; }

  .col-lg-offset-12 { margin-left: 100%; }
  .col-lg-offset-11 { margin-left: 91.66666667%; }
  .col-lg-offset-10 { margin-left: 83.33333333%; }
  .col-lg-offset-9  { margin-left: 75%; }
  .col-lg-offset-8  { margin-left: 66.66666667%; }
  .col-lg-offset-7  { margin-left: 58.33333333%; }
  .col-lg-offset-6  { margin-left: 50%; }
  .col-lg-offset-5  { margin-left: 41.66666667%; }
  .col-lg-offset-4  { margin-left: 33.33333333%; }
  .col-lg-offset-3  { margin-left: 25%; }
  .col-lg-offset-2  { margin-left: 16.66666667%; }
  .col-lg-offset-1  { margin-left: 8.33333333%; }
  .col-lg-offset-0  { margin-left: 0%; }

}





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


/**
 * Clearfix
 */

.clearfix:before, .clearfix:after,
.container:before, .container:after,
.container-fluid:before, .container-fluid:after,
.row:before, .row:after {
    content: " ";
    display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after { clear: both; }





/**
 * Buttons
 */

.button {
  font-family: 'Roboto', sans-serif;
  font-weight:500;
  font-style:italic;
  text-decoration:none;
  color:#fff;
  padding:8px 10px;
  margin:20px 0;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
      border-radius: 5px;
}
    .button:hover {
    opacity:0.8;
    }


/* red */
.button--primary {
  background:#cf0a2c;
}
    .button--primary:hover {
    background:#f28b00;
    }

/* yellow */
.button--secondary {
  background:#f28b00;
}
    .button--secondary:hover {
    background:#ff8f33;
    }

/* orange */
.button--tertiary {
  background:#ff8f33;
}
    .button--tertiary:hover {
    background:#f28b00;
    }





.button--ribbon-style {
  display:inline-block;
  position:relative;
  background:url(../img/yellow-ribon-midbg.png) repeat-x;
  height:29px;
  padding:5px 15px;
  color:#fff;
  margin:0;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
      border-radius: 0;
  transform: translateY(-15px);
}

  .button--ribbon-style:before {
    content:"";
    position:absolute;
    left:-10px;
    top:0;
    width:10px;
    height:29px;
    background:url(../img/yellow-ribon-leftbg.png) left top no-repeat;
  }

  .button--ribbon-style:after {
    content:"";
    position:absolute;
    right:-10px;
    top:0;
    width:10px;
    height:29px;
    background:url(../img/yellow-ribon-rightbg.png) right top no-repeat;
  }


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

/**
 * Icons
 */


.icon {
}



/**
 * Flexbox
 * Until we can utilise flexbox natively we can kinda, sorta, attempt to emulate
 * it, in a way
 *
 * Demo: jsfiddle.net/inuitcss/ufUh2
 */

.flexbox {
    display: table;
    width: 100%;
}

    /**
     * Nasty hack to circumvent Modernizr conflicts.
     */
    html.flexbox {
        display: block;
        width: auto;
    }

    .flexbox__item {
        display: table-cell;
        vertical-align: middle;
    }



/**
 * Block-list
 * Create big blocky lists of content
 *
 * Demo: jsfiddle.net/inuitcss/hR57q
 */

.block-list,
.matrix,
.block-list > li,
.matrix > li { border: 0 solid #ccc; }

.block-list,
.matrix {
    list-style: none;
    margin-left: 0;
    border-top-width: 1px;
}

    .block-list > li,
    .matrix > li {
        border-bottom-width: 1px;
        padding: 12px;
    }

.block-list__link,
.matrix__link {
    display: block;
    padding: 12px;
    margin: -12px;
}



/**
 * Matrix
 *
 * Demo: jsfiddle.net/inuitcss/Y2zrU
 */

.matrix { border-left-width: 1px; }

    .matrix > li {
        float: left;
        border-right-width: 1px;
    }


/**
 * Multi-list
 *
 * Stack lists into columns
 * Demo: jsfiddle.net/inuitcss/Y2zrU
 */

.multi-list {
    list-style: none;
    margin-left: 0;
}

    .multi-list > li { float: left; }

    .multi-list--padded > li { padding-left: 10px; padding-right: 10px; } /* TODO: update to match container padding */

/**
 * Apply these classes alongside the `.matrix` or `.multi-list` classes on
 * lists to determine how wide their columns are.
 */

.two-cols > li   { width: 50%; }
.three-cols > li { width: 33.333%; }
.four-cols > li  { width: 25%; }
.five-cols > li  { width: 20%; }

    /**
     * Unfortunately we have to qualify this selector in order to bring its
     * specificity above the `.[number]-cols > li` selectors above.
     */
    .matrix > .all-cols,
    .multi-list > .all-cols { width: 100%; }

@media (max-width:768px) {
    .two-cols > li   { width: 100%; }
}




/**
 * Tables
 */

table {
border-collapse:collapse;
}

td {
}

tr {
}

th {
}

thead {
}

tbody {
}

tfoot {
}




/**
 * Forms
 */


.entry-form-header {
    background: #f1f1f1;
    margin-bottom: 40px;
}

    .entry-form-header div:first-child {
        background: #f28b00;
        color: #fff;
        padding-top: 22px;
        padding-bottom: 22px;
    }

.entry-form-disclaimer p {
    margin: 0;
    font-size: 14px;
}
    .entry-form-disclaimer p:first-child { margin-top: 10px; }

    .contest-field { display: block; width: 100%; }

    .contest-form .submit-wrap {
        border-top: 1px solid #ddd;
    }


.site-form{
  text-transform:uppercase;
  font-weight:500;
  font-size:20px;

}

.site-form h2{
  background:#ff8f33;
  color:#fff;
  padding:20px;
  text-align:center;
}

.site-form__note{
  padding-top:30px;
  font-size:12px;
  display:block;
}
.site-form__note span{
  display:block;
}

  @media (max-width:1024px){

    .site-form{
      font-size:16px;
    }
    .site-form__note{
      border-bottom:2px solid #f2f2f2;
      padding-bottom:20px;
      margin-bottom:20px;
    }

    .site-form__note span{
      text-align:center;
    }
  }


.site-form p{
  margin:5px 0 8px;
}

.site-form .txtbox{
  font-weight:500;
  font-size:14px;
}

.select-area-wrap{
  border-bottom:2px solid #f2f2f2;
  padding-bottom:20px;
}

  @media (max-width:1024px){
    .select-area-wrap{
      text-align:center;
      padding:20px 0;
      border:0;
    }
    .select-area-wrap label{
      display:block;
      padding:5px 0 10px;
    }
  }

.site-form .selectric-wrapper{
  min-width:100px;
  max-width:150px;
  display:inline-block;
}

.site-form .selectric-wrapper li{
  background: none;
}

.submit-wrap{
  display:block;
  text-align:center;
}



form {

}

fieldset {
}

label {
  display:inline-block;
}

select {
  border:1px solid #ff8f33;
  color:#ff8f33;
  font-size:16px;
}

textarea {
  border:1px solid #ff8f33;
  color:#666666;
  margin:5px 0;
  font-size:16px;
}

legend {
}

input[type="text"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="week"] {
  border:1px solid #ff8f33;
  color:#666666;
  padding:8px 10px;
  margin:5px 0;

}

input[type="submit"],
button[type="submit"] {
  padding:10px 25px;
  margin:0 auto;
  border:0;
  border-radius:5px;
  text-align:center;

}


/**
 * Class
 */

.txtbox,
.txtarea{
  width:100%;
  text-transform:uppercase;
  font-weight:500;
}


/**
 * Validation
 */
.wpcf7-form-control-wrap {
  text-transform:none;
}

.wpcf7-not-valid-tip {
  color:#f00;
  font-size:12px;
  text-transform:capitalize;
}

.wpcf7-response-output {
  color:#f60;
}

.screen-reader-response{
  display:none;
}


select,
textarea,
input.wpcf7-not-valid {
}


@media (max-width:1200px) {
}

@media (max-width:1025px) {
}

@media (max-width:768px) {
}

@media (max-width:600px) {
}



/* -- cta timeline top -- */

.chute-countdown{

}

.chute-countdown .container{
  position:relative;
  padding:0;
  margin:0 auto;
}


.cta-top{
  background:#CF0A2C;
  color:#fff;
  width:631px;
  height:42px;
  position:fixed;
  top: 134px;
  font-weight:400;
  font-style:italic;
  text-align:center;
  z-index:100;

}

.chute-countdown .cta-top{ visibility:hidden; }

.chute-countdown .cta-top.visible { visibility:visible; }



.cta-top__wrap{
  background: url(../img/triple-yellow-arrows.png) 20px center no-repeat #100f1f;
  position:absolute;
  width:665px;
  height:52px;
  left:5px;
  bottom:5px;
  font-size:25px;
}

  .cta-top__wrap h3{
    float:left;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight:400;
    font-style:italic;
    display:inline-block;
    padding:8px 8px 10px 70px;
    margin:0;

  }

  .cta-top__wrap h3 b{
    font-weight:700;
  }

  .cta-top__wrap .slash{
    color:#54545c;
  }

  .cta-top__wrap span{
    color:#ff8f33;
    display:inline-block;
    font-size:28px;
    font-weight:700;
    padding-top:8px;

  }
  .cta-top__wrap span span{ padding-top:0; }

  .cta-top__wrap span b{
    color:#c8c8c8;
    font-size:20px;
    font-weight:900;
  }




  @media (max-width:1366px) {

    .cta-top{
      top: 134px;
    }

  }
/*
  @media (max-width:1200px) {

    .cta-top{
      top:30px;
    }

  }
*/
  @media (max-width:1024px) {

    .cta-top__wrap h3,
    .cta-top__wrap span{
      padding-top:10px;
    }

  }

  @media (max-width:768px) {

    .cta-top{
      width:541px;
      left:10%;
      top:150px;
    }

    .cta-top__wrap{
      width:572px;
      font-size:22px;
    }

    .cta-top__wrap span{
      font-size:22px;
      padding-top:12px;
    }

    .cta-top__wrap span b{
      font-size:18px;

    }

  }


  @media (max-width:600px) {
    .cta-top{
      left:0;
    }

  }


  @media (max-width:500px) {


    .cta-top{
      top:600px;
      left:0;
      right:0;
      width:100%;
      height:80px;
    }

    .cta-top__wrap{
      width:100%;
      height:100%;
      left:0;
      bottom:0;
      background: url(../img/triple-yellow-arrows.png) 15% 18px no-repeat #100f1f;
      opacity:1;
      font-size:22px;
    }

    .cta-top__wrap h3{
      display:block;
      width:100%;
      padding:0;

    }
    .cta-top__wrap span{

      padding-top:8px;

    }

    .cta-top__wrap span b{

      font-size:15px;

    }
  }

  @media (max-width:320px) {

    .cta-top{
      top:700px;

    }

    .cta-top__wrap{
      background: url(../img/triple-yellow-arrows.png) 30px 10px no-repeat #100f1f;
    }

    .cta-top__wrap h3{
      padding:5px 0;
    }
  }


/* -- cta timeline sidebar -- */

.cta-sidebar{

  color:#fff;
  width:100px;
  height:390px;
  right:0;
  top:200px;
  font-weight:400;
  font-style:italic;
  text-align:center;
  z-index:100;
  position:fixed;

}

.chute-countdown .cta-sidebar{
  visibility:hidden;

}
.chute-countdown .cta-sidebar.visible{
  visibility:visible;
}

.banner__misc .cta-sidebar{
  top:140px;
}

.cta-sidebar__wrap{
  background: url(../img/triple-yellow-arrows.png) center 10px no-repeat #4f4f57;
  padding:25px 15px;
  height:333px;
}

  .cta-sidebar h3{
    font-weight:400;
    margin:10px 0 5px 0;
    line-height:18px;
  }

  .cta-sidebar h3 b{
    font-weight:700;
    text-transform:uppercase;

  }

  .cta-sidebar__date{
    text-transform:uppercase;
    font-size:14px;
    padding:5px 0;
  }

  .cta-sidebar__date span{
    display:block;
    color:#FF8F33;
    font-weight:700;
    font-size:20px;
  }

  .cta-sidebar__date.month{
    display:block;
    color:#FF8F33;
    font-weight:700;
    font-size:18px;
    border-bottom:1px solid #000;
  }


  @media (max-width:1366px) {

    .banner__misc .cta-sidebar{
      top:50px;
    }

  }

  @media (max-width:1200px) {

    .banner__misc .cta-sidebar{
      top:10px;
    }

  }


  @media (max-width:415px) {

    .chute-countdown .cta-sidebar{
      display:none;
    }

  }



a.cta-sidebar__btn{
  color:#fff;
  font-weight:700;
  font-size:20px;
  display:block;
  width:100%;
  height:58px;
  text-decoration:none;

}

  @media (max-width:415px) {

    a.cta-sidebar__btn{
      display:none;
    }

    .chute-countdown .cta-sidebar a.cta-sidebar__btn{
      display:block;

    }

  }


  a.cta-sidebar__btn span{
    border-radius:0 0 10px 10px;
    display:block;
    width:100%;
    height:100%;
    padding-top:5px;
    background:#cf0a2c;
  }

  a.cta-sidebar__btn:hover span{
    background:#FF8F33;
  }


  a.cta-sidebar__btn span.icon-right-arrow{
    border-radius:0;
    display:inline-block;
    width:12px;
    height:12px;
    padding:0;
    background: url(../img/icon-right-arrow.png) no-repeat;
  }

  .cta-sidebar__btn span.icon-navigation{
    border-radius:0;
    display:inline-block;
    width:12px;
    height:15px;
    padding:0;
    margin:0 0 0 10px;
    transform: rotate(90deg);
  }


/**
 * Page-head homepage
 */

.page__header--front{

}




/**
 * Page-head
 */



.page__header {
  background:#23232d;
  color:#fff;
  padding-top:10px;
    position: fixed;
    top: 0;
  height:120px;
    width: 100%;
    z-index: 10;
  display:block;

}

.page__header .container{
  position:relative;

}


  @media (min-width: 321px) and (max-width: 768px) {

    .page__header{
      height:137px;
      position:relative;
    }

  }

  @media (max-width:320px){

    .page__header{
      height:131px;
      position:relative;

    }

  }






  /**
   * Page-head Logo
   */

  .logo-area{
    width:180px;
    height:80px;
    text-align:center;
    float:left;
  }

    .logo{
      display:inline-block;
      width:180px;
      height:80px;
      background:url(../img/arrowquip-logo.png) center no-repeat;
	  transform: scale(.7,0.7) translateY(-10px);
    }

    .squeeze.button--ribbon-style{
      font-family: 'Roboto Condensed', sans-serif;
      padding:5px;
    }

    .squeeze.button--ribbon-style b{
      font-family: 'Roboto Condensed', sans-serif;
      font-weight:700;
      font-style:italic;
      font-size:16px;
    }


  /**
   * Page-head main navigation
   */

  .mainmenu{
    float:left;
    max-width:780px;
    height:118px;

  }

  /**
   * Page-head Infoboxes
   */


  .head-infobox{
    float:right;
    min-width:200px;
    max-width:355px;
    text-align:right;
  }

	.head-infobox__search.clearfix { display: inline-block; }

    .head-infobox a{
      color:#ff9000;
      font-weight:700;
      text-decoration:none;
	  margin-right: 18px;
    }

    .head-infobox a:hover{
      color:#fff;
    }

    .dealer-login{
      font-size:20px;
    }


  /**
   * Page-head Search Infobox
   */


    .search-form{
      width:220px;
      height:35px;
      z-index:12;
      background:#23232d;
      float:right;
      postion:relative;
      margin-top:10px;
      border:2px solid #7d7d7d;
      border-radius:5px;

    }

      input.search-form__text{
        padding:5px 10px;
        width:180px;
        color:#fff;
        float:left;
        background:none;
        border:0;
        text-transform:none;
        font-size:15px;
        font-style:italic;
        display:inline-block;
      }

      .search-form__submit{
        border:0;
        float:right;
        width:30px;
        height:35px;
        background:none;
        cursor:pointer;
        display:inline-block;
        position:relative;
        padding:0!important;
        background:url(../img/searchbg.png) center center no-repeat;
      }

  /**
   * Page-head Contact Infobox
   */


    .head-infobox__contacts{
      margin-top:10px;
      height:28px;
      max-width:350px;
    }

      .head-infobox__contacts--number,
      .head-infobox__contacts--socials{
        height:100%;
        }

      .head-infobox__contacts--number{
        border-right:2px solid #7d7d7d;
        font-weight:700;
        font-size:18px;
        background:url(../img/icon-phone.png) left center no-repeat;
        padding:4px 12px 0 30px;
        float:right;
      }

      .head-infobox__contacts--socials{
         width:180px;
         float:right;
        }

      .head-infobox__contacts--socials a,
      .footer-socials a{
        display:inline-block;
        width:28px;
        height:28px;
        margin:1px;
        background:url(../img/social-sprite.png) no-repeat;
      }

      .head-infobox__contacts--socials a:hover,
      .footer-socials a:hover{ opacity:0.7; }

      .head-infobox__contacts--socials a.icon-tw,
      .footer-socials a.icon-tw{ background-position: 0px 0px;}

      .head-infobox__contacts--socials a.icon-fb,
      .footer-socials a.icon-fb{ background-position: 0px -38px; }

      .head-infobox__contacts--socials a.icon-gg,
      .footer-socials a.icon-gg{ background-position: 0px -76px; }

      .head-infobox__contacts--socials a.icon-yt,
      .footer-socials a.icon-yt{ background-position: 0px -114px; }

      .head-infobox__contacts--socials a.icon-linked,
      .footer-socials a.icon-linked{ background-position: 0px -152px; }


  @media (max-width:1200px) {

    .head-infobox{
      max-width:160px;
    }

    .search-form{
      margin-top:5px;
      width:170px;
    }

    input.search-form__text{
      width:130px;

    }

    .head-infobox__contacts{
      margin-top:10px;
    }
    .head-infobox__contacts--number{
      border-right:0;
      padding:3px 12px 0 30px;
      margin-top:5px;
    }
	nav.social-icons { display: none; }
	.head-infobox__contacts--number, .head-infobox__contacts--socials { height: initial; margin-top: 0; }


  }

  @media (max-width:1024px) {


    .page__header--front .page__header--top{
      display:block;
    }


    .mainmenu{
      float:none;
      height:80px;
      position:absolute;
      right:0;
      top:70px;
    }

    .head-infobox{
      float:none;
      height:40px;
      position:absolute;
      right:0;
      top:20px;
      min-width:300px;
      max-width:350px;
    }


    .dealer-login{
      font-size:16px;
      float:left;
      padding:8px 5px 8px 0;
      width:auto;

    }

    .search-form{
      float:left;
      padding:0 10px;
      width:200px;
      margin-top:0;
    }

    .head-infobox__contacts{
      display:none;
    }

  }





  @media (max-width:600px) {
    .logo-area{
      width:140px;
    }

    .logo{
      width:115px;
      height:60px;
      background:url(../img/logo-small.png) center no-repeat;
    }

  }


  @media (max-width:600px) {


    .squeeze.button--ribbon-style b{
      font-size:12px;
    }
    .mainmenu{
      max-width:57%;
    }

    .head-infobox{ display:none; }

  }



  .page__header--bottom{
    height:110px;
  }

  .page__header--bottom .container{
    position:relative;
  }


   /**
     * Fix Sticky Header Position
     * for when admin bar visible
     */

    /* TODO: Uncomment if design has sticky header */

    .admin-bar .page__header {
        top: 32px;
    }

    @media screen and (max-width: 782px) {
        .admin-bar .page__header {
            top: 46px;
        }
    }


/**
 * Navigation
 */

.nav--primary {

}
  .nav--primary {
    padding: 0px;
    margin: 0px;
    list-style: none;
    position: relative;
    display: inline-table;
  }

  .nav--primary li { padding: 0px; list-style-type:none; }

  .nav--primary > li { display: inline-block; }

  .nav--primary > li:hover { border-bottom:5px solid #e51b24; }

  .nav--primary a {
    display: block;
    text-decoration: none;
    color:#fff;
    font-size:20px;
  }

  .nav--primary a:hover{
    color:#ff8f33;
  }

  .nav--primary li > a {
    display:inline-block;
    padding: 38px 12px 46px;
  }

  .nav--primary ul {
    display: none;
    position: absolute;
    top:100%;
    min-width: 230px;
    padding: 0px;
    background-color: #000;
    z-index:100;
  }

  .nav--primary li:hover > ul { display: block; }

  .nav--primary ul > li { position: relative; }

  .nav--primary ul > li a {
    padding: 10px 15px 10px 40px;
    height: auto;
    font-size:16px;
    display:block;
  }

  .nav--primary ul > li a:hover {
    color:#fff;
  }

  .nav--primary ul li:after{
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "\ea1c";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    position:absolute;
    left:15px;
    top:12px;
    width:10px;
    height:10px;
    font-size:14px;

  }

  .nav--primary ul li:hover:after{
    color:#f00;
  }

  .nav--primary ul ul {
    position: absolute;
    left: 100%;
    top:0;
  }


  @media (max-width:1024px) {

    .nav--primary a {
      font-size:18px;
    }

    .nav--primary li > a {
      padding: 0 12px 5px;
    }
  }

  @media (max-width:800px) {

    .nav--primary li > a {
      padding: 0px 8px 5px;
    }

  }


  @media (max-width:768px) {

    .mainmenu {  }

    .nav--primary a {
      font-size:15px;
    }

    .nav--primary li > a {
      padding: 10px 12px;
    }

	.logo-area { width: 110px; }
	.logo { transform: scale(.7,0.7) translateY(-10px) translateX(-45px); }

  }


  @media (max-width:600px) {

    .mainmenu { top:0; }

    .nav--primary > li:hover { border-bottom:0; }

    .nav--primary li { display:block; }

    .nav--primary li > a {  padding: 5px 12px;  }

    .nav--primary li:hover > ul { display: none; }

  }


/* -- footer menu --*/

.nav--secondary {
  display:inline-block;
  padding:10px;
  font-weight:500;
  font-size:24px;
}

  .nav--secondary li{
    float:left;
    list-style-type:none;
    padding:5px 10px;
  }

  .nav--secondary a{
    color:#3d3d3d;
    text-decoration:none;
  }

  .nav--secondary a:hover{
    color:#ff9000;

  }

  @media (max-width:768px) {

    .nav--secondary {
      font-weight:700;
      font-size:16px;
    }

  }

  @media (max-width:600px) {

    ul.mobile-nav.nav--secondary {
      display:inline;
      text-align:center;

    }
    .nav--secondary li{
      float:none;
      display:inline-block;
      padding:5px;
    }

	.logo { transform: none; }
	.logo-area { width: 180px; }
	.button--ribbon-style { transform:translateY(5px); }

  }

  @media (max-width:320px) {

    .nav--secondary {
      font-size:15px;
    }

  }


/**
 * Sub-navigation
 */
.sub-menu {
}


/**
 * Masthead
 */

.masthead {
}


/**
 * Breadcrumbs
 */

.breadcrumbs {
  color:#cecece;
  padding:20px 0;
  font-weight:500;
}

.breadcrumbs a{
  color:#3d3d3d;
  display:inline-block;
  padding:0 20px 0 5px;
  text-decoration:none;
  background:url(../img/icon-breadcrumbs.png) right center no-repeat;
}

.breadcrumbs strong{
  color:#FF8F33;
  display:inline-block;
  padding:0 5px;
  font-weight:500;
}

.breadcrumbs a:hover{
  color:#FF8F33;
}

/**
 * Pagination
 */

.pagination {
}

.wp-pagenavi { clear: both; padding:5px 0 30px 0;}

.wp-pagenavi a, .wp-pagenavi span {
  text-decoration: none;
  border: 1px solid #BFBFBF;
  padding: 3px 7px;
  margin: 2px;
  color:#3d3d3d;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  color:#fff;
  background:#3d3d3d;
}

.wp-pagenavi span.current {
  font-weight: bold;

}



/**
 * Page-footer
 */

.page__footer {
  background:#f2f2f2;
  line-height:1.5em;
  color:#3d3d3d;
}

.page__footer a{
  color:#3d3d3d;
  text-decoration:none;
}


  .footermenu{
    border-bottom:1px solid #b2b2b2;
    text-align:center;
    min-height:80px;
  }

  .mobile-nav{ display:none; }


  @media (max-width:768px) {
    .footermenu{
      font-size:18px;
    }
  }

  @media (max-width:600px) {
    .page__footer {
      bottom: -80px;
      text-align:center;
      line-height:1.3em;
      z-index: 100;
    }
    .footermenu{
      border-bottom:0;
      text-align:center;
      padding:20px 0 0;
    }
  }

  .site-credits{
    min-height:190px;
  }

  .site-credits article{
    font-weight:500;
    font-size:16px;
  }


    .site-credits__links{
      text-align:right;
      border-right:1px solid #b2b2b2;
      font-size:17px;
      /*padding:40px 80px 10px 50px;*/
      padding:10% 25% 5% 20%;
    }

      .site-credits__links li{
        list-style-type:none;
        margin:0;
      }

      .site-credits__links a{
        display:block;
        font-weight:700;
      }

      .site-credits__links a:hover{
        color:#ff8f33;
      }

      .site-credits__links li.button{
        color:#fff;
        font-size:20px;
        text-align:center;
        margin:0 0 20px 0;

      }

      .site-credits__links li.button a,
      .site-credits__links li.button a:hover{ color:#fff; font-weight:400;}


      @media (max-width:1024px) {

        .site-credits__links li.button {
          font-size: 16px;
          margin: 0px 0px 10px;
        }

        .site-credits article{
          font-size:14px;
        }
        .site-credits__links{
          padding:15% 15% 10% 15%;
          font-size:15px;
        }

      }


      @media (max-width:768px) {

        .site-credits__links li.button {
          font-size: 14px;
          padding:5px 7px;
        }

        .site-credits article{
          font-size:13px;
        }
        .site-credits__links{
          padding:15% 10% 15% 5%;
          font-size:14px;
        }

      }


      @media (max-width:600px) {
        .default-nav,
        .site-credits__links{
          display:none;
        }

        .mobile-nav{
          display:block;
          padding:10px;
          text-align:left;
        }

      }



    .site-credits__contacts{
      font-weight:500;
      font-size:15px;
      /*padding:40px 50px 0 80px;*/
      padding:5% 15% 0 15%;
    }

      .site-credits__contacts p{
        margin:0;
      }

      .site-credits__contacts span{
        font-weight:700;
        display:inline-block;
        width:180px;
      }

      .site-credits__contacts a{
        color:#ed2024;
      }

      .footer-socials{
        padding:10px 0;
      }

      @media (max-width:1366px) {
        .site-credits__contacts{
          font-size:14px;
          padding:5% 10% 0 10%;
        }
        .site-credits__contacts span{
          width:150px;
        }

      }

      @media (max-width:1200px) {
        .site-credits__contacts{
          font-size:14px;
          padding:5% 5% 0 8%;
        }
        .site-credits__contacts span{
          width:140px;
        }


      }


      @media (max-width:1024px) {
        .site-credits__contacts{
          font-size:14px;
          padding:7% 2% 0 3%;
        }
        .site-credits__contacts span{
          font-weight:700;
          width:auto;
        }

      }

      @media (max-width:768px) {
        .site-credits__contacts{
          font-size:14px;
          padding:7% 0 0 0;
        }

      }


    .site-credits__addresses{
       font-size:15px;
       /*padding-top:40px;*/
       padding-top:6%;
    }

      .site-credits__addresses span{
        padding:5px 5px 5px 0;
      }

      .site-credits__addresses address{
        font-style:normal;
        float:left;
        width:50%;
        padding:5px;
      }

      .site-credits__addresses p{
        margin:0;
      }

      @media (max-width:1024px) {

        .site-credits__addresses span{
          display:none;
        }
        .site-credits__addresses address{
          width:100%;
          font-size:14px;
          padding:5px 0;
        }
      }

      @media (max-width:768px) {
        .site-credits__addresses address{
          width:100%;
          font-size:13px;
        }
      }

      @media (max-width:600px) {
        .site-credits__addresses{
          padding:0;
        }

        .footer-socials{
          position:absolute;
          bottom:-200px;
          width:100%;
        }

        .footer-socials a{ margin:5px;}
      }


  .copyright{
    text-align:center;
    padding:20px;
    font-size:14px;
  }

    @media (max-width:600px) {
      .copyright{
        padding:50px 0 20px;
        font-size:13px;

      }
    }


/*------------------------------------*\
    HOMEPAGE CONTENTS
\*------------------------------------*/



.banner{
  position:relative;
  width:100%;

  /*background:url(../../images/banner.jpg) center no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  background-position: center;
  height:890px;
  max-height:890px;*/

}


  .banner__desktop,
  .banner__tablet,
  .banner__mobile{
    display:none;
  }


  @media (min-width:769px){

    .banner__desktop { display:block; }
  }

  @media (min-width: 321px) and (max-width: 768px) {

    .banner__tablet { display:block; }
  }

  @media (max-width:320px){

    .banner__mobile { display:block; }
  }



/**
 * Homepage Info Boxes
 */

.infoboxes{}

.infoboxes__left{

}
  .squeeze-chutes{
    background:#fff;
    padding:5%;
    margin-left:20px;
  }

  .squeeze-chutes h2{
    color:#cf0a2c;
    border-bottom:1px solid #ee3224;
    display:block;
    padding:5px 0 10px;
    font-size:45px;
    font-weight:700;
    margin:0 0 10px;
  }

  .squeeze-chutes__slider span{
    display:block;
    position:relative;
    width:100%;
    height:100%;
  }

  .squeeze-chutes__slider span:before{
    position:absolute;
    left:0;
    top:0;
    content:"";
    width:100%;
    height:100%;
    background:url(../img/video-play-icon.png) center center no-repeat;
    display:block;

  }

/**
 * infoboxes left media queries
 */

  @media(max-width:600px){

    .squeeze-chutes{
      margin-left:0;
    }

  }


.infoboxes__right{
  color:#3d3d3d;
}

  .find-dealer,
  .farm-show{
    padding:5% 0 5% 8%;

  }

  .find-dealer{
    background: url(../../images/find-dealer.jpg);
  }

  .farm-show{
    background: url(../../images/farm-show.jpg);
    color:#d7d7d7;
  }

  .infoboxes--item{
    /*width:664px;*/
    width:100%;
    height:355px;
    margin-bottom:20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display:block;
    position:relative;
    z-index:1;

  }

  .infoboxes--item h3{
    font-size:32px;
    font-weight:700;
    border-bottom:1px solid #ee3224;
    padding-bottom:20px;
    color:#3d3d3d;
    margin:0 0 10px;
  }

  .farm-show h3{
    color:#CF0A2C;
    border-bottom:1px solid #d7d7d7;
  }

  .infoboxes--item__info{
    padding:5%;
    width:430px;
    height:265px;
    position:relative;
    z-index:2;
  }

    .find-dealer .infoboxes--item__info:after,
    .farm-show .infoboxes--item__info:after {
       width:100%;
       height:100%;
       content:" ";
       position:absolute;
       left:0;
       top:0;
       opacity:0.8;
       z-index:-1;
    }

    .find-dealer .infoboxes--item__info:after {
       background:#fff;
    }

    .farm-show .infoboxes--item__info:after {
       background:#000;
    }

    .infoboxes--btn{
      display:block;
      text-align:center;
      width:100%;
      position:absolute;
      left:0;
      bottom:40px;
      z-index:3;
    }

    .infoboxes--btn a.button{
      margin:0 auto;
      font-weight:500;
      font-size:20px;
      padding:10px 20px;
      opacity:1;
    }





/**
 * infoboxes right media queries
 */

  @media(min-width:1201px){

    .farm-show .infoboxes--item__info{
       position:absolute;
       right:0;
    }

  }


  @media(max-width:1200px){

    .infoboxes__right{
      color:#3d3d3d;
    }
  }

  @media(max-width:1024px){

    .infoboxes__right{
      padding:50px 0 10px;
    }

    .infoboxes--item{
       width:48%;
    }

    .find-dealer,
    .farm-show{
      padding:3% 4%;
    }

    .find-dealer{
      float:left;
    }

    .farm-show{
      float:right;
      position:relative;
    }

    .infoboxes--item__info{
      width:100%;
    }

  }

  @media(max-width:600px){

    .infoboxes--item__info{
      height:300px;
      padding:5%;
    }
    .infoboxes--item h3{
      font-size:30px;
      padding-bottom:15px;
    }
  }

  @media(max-width:500px){

    .infoboxes--item{
       width:100%;
       text-align:center;
    }

    .infoboxes--item__info{
      padding:5% 10%;
    }

  }


/**
 * Past Winners section
 */

.past-winners{
  text-align:center;
  position:relative;
  padding:20px;
  margin:50px 0 30px;

}

.past-winners .container{
  position:relative;
  border:3px solid #EB002B;
}



.past-winners h2{
  color:#fc8f34;
  font-size:50px;
  font-weight:700;
  font-style:italic;
  border-bottom:1px solid #EB002B;
  padding:0 30px 20px;
  display:inline-block;
  margin:0;
  position:relative;
  top:-40px;
  z-index:10;
  background:#fff;
}

.past-winners__desc{
  text-align:center;
  font-size:25px;
}

  .past-winners__desc b{
    color:#ff8f33;
    font-weight:700;
    font-style:italic;
  }

.past-winners__lists{
  padding:80px 0 50px;
}

  .listItem{
    position:relative;
    margin-bottom:50px;
    min-height:260px;
  }

  .listItem a{
    text-decoration:none;

  }

  .listItem__image{
    float:left;
    width:50%;
    position:relative;
  }

  .listItem__image img{
    border-radius:13px;

  }


    .listItem__image--ribbon{
      position:absolute;
      left:0;
      top:-35px;
      background:url(../img/award-ribbon.png) no-repeat;
      width:81px;
      height:94px;
    }

    .listItem__image--date{
      position:absolute;
      right:30px;
      bottom:-18px;
      background:url(../img/title-ribon.png) no-repeat;
      width:177px;
      height:36px;
      color:#fff;
      font-size:22px;
      padding:6px 10px 0;

    }

  .listItem__desc{
    float:right;
    padding:0 20px;
    text-align:left;
    width:47%;
  }

  .listItem h3, .listItem h4{
    margin:0;
  }

  .listItem h3{
    color:#ff8f33;
    font-size:24px;
  }

  .listItem h4{
    font-size:22px;
  }

  .listItem article{
    padding:10px 0;
  }


  .past-winners span.icon-navigation{
    transform:rotate(180deg);
    display:inline-block;
  }



  .past-winners .infoboxes--btn{
    bottom:8px;
  }

  .past-winners .infoboxes--btn .button{
    border-radius:0;
  }


  @media(max-width:1024px){
    .listItem__desc{
      width:50%;
    }
  }

  @media(max-width:500px){

    .past-winners{
      padding:0;
    }

    .past-winners h2{
      font-size:40px;
    }

    .listItem__image--date{
      left:30px;
      bottom:-10px;
    }

    .listItem__image,
    .listItem__desc{
      float:none;
      text-align:center;
    }

    .listItem__image{
      display:inline-block;
      margin:0 auto;
      width:100%;
    }

    .listItem__desc{
      margin-top:30px;
      width:100%;
    }
  }

  @media(max-width:320px){
    .listItem__image{
      width:100%;
    }
  }



/* scroller */


/* Thumbnail Tray
----------------------------*/
.thumb-scroller{
  padding:0 0 20px;
  width:100%;
  position:relative;
}

.thumb-tray{
  width:100%;
  height:350px;
  position:relative;
  z-index:3;
  left:0;
  overflow:hidden;
  text-align:center;
}

ul.thumb-list{
  display:inline-block;
  position:relative;
  left:0;
  padding:0 40px;
  list-style:none;
  margin:0;

 }

ul.thumb-list li{
  display:inline;
  width:600px;
  float:left;
  overflow:hidden;
  margin-right:40px;
  list-style:none;
  padding:40px 0 30px;
}


  @media(max-width:1366px){

    ul.thumb-list li{ width:510px; }

    .thumb-tray .listItem__image{ width:45%; }

    .thumb-tray .listItem__desc{ width:54%; }

  }

  @media(max-width:1200px){

    ul.thumb-list li{ width:425px; }

  }

  @media(max-width:1024px){

    ul.thumb-list li{ width:640px; }

  }

  @media(max-width:603px){

    ul.thumb-list li{ width:480px; }

  }

  @media(max-width:533px){

    ul.thumb-list li{ width:380px; }

  }

  @media(max-width:415px){

    .thumb-tray{ height:500px; }

    ul.thumb-list li{ width:320px; }

    .thumb-tray .listItem__image{ width:70%; }

    .thumb-tray .listItem__desc{ width:100%; }

  }

  @media(max-width:375px){

    ul.thumb-list li{ width:270px; }

    .thumb-tray .listItem__image{ width:80%; }

  }

  @media(max-width:320px){

    ul.thumb-list li{ width:220px; }

    .thumb-tray .listItem__image{ width:100%; }

  }




.thumb-prev, .thumb-next{ width:40px; height:100%; position:absolute; z-index:5; bottom:0; }

.thumb-prev{ left:0; background: url('../img/left_arrow.png') no-repeat left 40%; }

.thumb-next{ right:0; background:url('../img/right_arrow.png') no-repeat right 40%; }

.thumb-prev:hover, .thumb-next:hover{ cursor:pointer; background-color:rgba(256,256,256, 0.1); }

.thumb-prev:hover{ border-right:1px solid rgba(256,256,256, 0.2); }

.thumb-next:hover{ border-left:1px solid rgba(256,256,256, 0.2); }






/* main home details */

.main-home-content{
  margin:20px 0;
  position:relative;
  padding-bottom:50px;
}

.main-home-content .container{
  position:relative;
}

.main-home-content__wrap{
  background:#000;
  opacity:0.8;
  width:551px;
  min-height:341px;
  height:auto;
  text-align:left;
  padding:10px 30px 20px;
  color:#fff;
  position:absolute;
  right:20%;
  bottom:20%;
}

.main-home-content__wrap h1 {
    font-size: 40px;
    font-weight:400;
  color:#cf0a2c;
  border-bottom:1px solid #fff;
  padding:10px 0;
  margin:0;
}

.main-home-content__wrap img {
    z-index:1;
}

.main-home-content__wrap h1 b {
    font-weight:500;
}


.main-home-content__wrap .button span.icon-navigation {
   transform:rotate(90deg);
   display:inline-block;
}

  @media(max-width:1200px){

    .main-home-content__wrap{
      width:600px;
      height:300px;
      right:20%;
      top:10%;
      bottom:10%;
      z-index:2;
    }

    .main-home-content__wrap article{
      padding-bottom:30px;
    }

  }

  @media(max-width:1024px){

    .main-home-content{
      min-height:550px;
    }

    .main-home-content__wrap{
      top:60%;
      left:10%;
      opacity:1;
      width:600px;
      min-height:300px;
      height:auto;
      background:#262626;
      z-index:2;
    }


  }

  @media(max-width:768px){

    .main-home-content__wrap{
      position:relative;
      left:0;
      bottom:0;
      width:100%;
      min-height:300px;
      margin-bottom:70px;
    }

    .main-home-content__wrap h1{
      font-size:30px;
    }

  }


/*------------------------------------*\
    BLOG CONTENTS
\*------------------------------------*/


.post{
  text-align:left;
  padding:20px 0;
}

.post a{ text-decoration:none; }

.post h2{
  padding:10px 0;
  margin:0;
  font-size:30px;
  font-weight:700;
}

.post h2 a{
  color:#FF8F33;
}

.post h2 a:hover{
  color:#4F4F57;
}

.postInfo{
  padding:8px 0;
  border-top:1px solid #ccc;
  border-bottom:1px solid #ccc;
}

  .postDate, .postCategory, .postComment{
    display:inline-block;
    padding-right:15px;
  }

  .postDate span,
  .postCategory span,
  .postComment .icon-bubble{
    color:#FF8F33;
  }

  .postComment{ color:#9a9a9a; position:relative; }
    .postComment .icon-bubble{ font-size:20px; display:inline-block; }
    .comment_count{
      width:20px;
      height:20px;
      color:#fff;
      display:inline-block;
      text-align:center;
      font-size:12px;
      font-weight:700;
      position:absolute;
      line-height:normal;
      padding:2px 0 0;
      left:0;
      top:0;
    }

.postmetadata{
  padding:12px 0;
  color:#555;
}

.postmetadata a{color:#9a9a9a;}

  .sharethis{
    padding:15px 0;
    float:right;
  }

    .stButton .stFb, .stButton .stTwbutton, .stButton .stMainServices {
      height:25px!important;
      display:inline-block;
    }

/**
 * Sidebar
 */

.page-sidebar{
  text-align:left;
  padding-left:20px;
}

.page-sidebar ul{
  padding:0;
  list-style-type:none;
}

.page-sidebar li{
  background:url(../img/icon-breadcrumbs.png) left no-repeat;
  padding-left:20px;
}

.page-sidebar li a{
  text-decoration:none;
  color:#4f4f57;
}

.page-sidebar li a:hover{
  color:#ff8f33;
}

/**
 * sidebar widgets
 */


/*------------------------------------*\
    PAGE CONTENTS
\*------------------------------------*/
.page-body,
.blog-body{
  line-height:1.5em;
}

.page-content{
  background:#f2f2f2;
  padding:50px 0;
  width:100%;
}

  .page-content a{ color:#54545c; }
  .page-content a:hover{ color:#FF8F33; }
  .page-content a.button{ color:#fff; }

  .page-body li,
  .blog-body li{
    list-style-type:none;
    background: url(../img/libg.png) left 7px no-repeat;
    padding-left:20px;

  }
  .page-title{
    text-align:center;
    display: inline-block;
    margin:20px auto 55px auto;
    padding:0 20px;
   }
    .page-title a{ text-decoration:none; }
    .page-title a:hover{ color:#4f4f57; }

    .page-title h1{font-size:48px; margin:20px 0 10px 0;}
    .page-title h2{font-size:34px; margin:10px 0;}
    .page-title h3{font-size:14px; margin:5px 0;}

    .page-title h1,
    .page-title h2{
      font-weight:900;
      font-style:italic;
      text-transform:capitalize;
      display:block;
    }

    .page-title h3{
      font-weight:400;
      color:#54545c;
    }


    @media (max-width:1024px) {
      .page-title h1,
      .page-title h2{
        line-height:normal;
      }

      .page-title h1{
        font-size:44px;
      }


    }

    @media (max-width:500px) {

      .page-title h1{
        font-size:40px;
      }
    }

    .page-title.yellow-title{ border-bottom:1px solid #FF8F33;}
    .page-title.red-title{ border-bottom:1px solid #cf0a2c;}

    .yellow-title,
    .yellow-title a{ color:#FF8F33; }

    .red-title,
    .red-title a{ color:#cf0a2c; }



  .entry{
    text-align:left;
    padding:0 9% 0 6%;
    /*border:1px solid #f00;*/
  }


    @media (max-width:1024px) {
      .entry{
        padding:0;
      }
    }

    .two-column-entry{
       /*-moz-column-count: 2;
       -moz-column-gap: 60px;
       -webkit-column-count: 2;
       -webkit-column-gap: 60px;
      padding:10px 40px;*/
      padding:1% 5%;
      width:50%;
      float:left;
     }


    .morebtn{
      display:block;
      clear:both;
      text-align:center;
      padding:30px 0;
    }

    .entry .button{
      padding:10px 30px;
    }


.page-subcontent{
  padding:50px 0;
}

  .subcontent-title{
    color:#e51c24;
    font-size:48px;
    font-style:italic;
    font-weight:900;
    margin:10px 0;
  }

  .subcontent-subtitle{
    padding:5px 0 15px;
    font-size:24px;
    font-weight:300;
  }

  .subcontent-video{
    padding:20px;
    background:#23232d;
    color:#fff;
    height:193px;
  }

  .subcontent-video__label{
    float:left;
    width:50%;
    font-size:34px;
    font-weight:700;
    font-style:italic;
    line-height:normal;
    padding:20px 5px 20px 40px;
    background: url(../img/red-arrow-right.png) left 28px no-repeat;
  }

  .subcontent-video__embed{
    /*width:282px;*/
    width:50%;
    height:155px;
    float:right;
    text-align:right;
  }

  .page-subcontent ul,
  .line-block-details ul{
    padding:0 5px;
    list-style-type:none;

  }



/**
 * Centered Top Page Template
 * One column page half floated top
 */
.centered-top-template{}

  .centered-top-template .page-content{
    padding-bottom:150px;
  }

  .page-centered-top{
    position:relative;
  }

  .page-centered-top__wrap{
    border:1px solid #cccccc;
    background:#fff;
    position:relative;
    top:-150px;
    padding:3% 5%;
  }

  .page-centered-top__wrap h2{
    margin:0;
  }

  .page-centered-top__wrap article{
    padding:10px 0;
  }

/**
 * Dealer map page
*/

.map-search{
  background:#f2f2f2;
  color:#3d3d3d;
  font-size:20px;
  font-weight:500;
  padding:25px;
}

input.map-searchform__text{
  width:113px;
  border:1px solid #c5c5c5;
  border-radius:3px;
  margin:0 10px;
}

.map-search input,
.map-search label{
  float:left;
  font-weight:400;
}

.map-search label{
  display:inline-block;
  padding-top:5px;
}
.map-search .button{
  float:right;
}

/**
 * farm show details
 */

.farmshow-details{
  background:#3d3d3d;
  color:#fff;
  padding:30px 25px;
  border-radius: 20px 0 0 20px;
  margin:30px 0 10px;
  font-size:21px;
  font-weight:400;
}

.farmshow-details div{
  position:relative;
  padding:5px 10px 10px 30px;
  margin-left:12%;
}

.farmshow-details h2{
  background: url(../img/icon-right-arrow.png) 10px 20px no-repeat #ff8f33;
  color:#fff;
  font-size:28px;
  line-height:28px;
  font-weight:900;
  padding:15px 10px 15px 30px;
  margin:0 0 20px;
}

.farmshow-details.active h2{
  background: url(../img/icon-right-arrow.png) 10px 20px no-repeat #CF0A2C;

}

.farmshow-details span{
  color:#ff8f33;
  display:inline-block;
  height:20px;
  width:25px;
  position:absolute;
  left:0;
  top:8px;
}


.farmshow-details.active span{
  color:#CF0A2C;
}

.farmshow-details h2 span{
  color:#fff;
  transform:rotate(90deg);
  display:inline-block;

}

.farmshow-details a{
  color:#fff;
  text-decoration:none;

}

.farmshow-details b,
.farmshow-details strong{
  font-weight:700;
}


#map {
   max-width: 761px;
   width:100%;
   height: 570px;
}



/**
 * Dealer Login Page
 */

#log_forms{
  text-align:center;
}
  @media(max-width:500px){

    .form-group label{
      display:block;
    }
  }


/**
 * Farm Show Page (calendar)
 */

#tribe-events-content{
  text-align:center;
}
/*
#tribe-events-content .tribe-events-calendar div[id*=tribe-events-event-] h3.tribe-events-month-event-title {
  padding-top:10px;
}
*/

h2.tribe-events-page-title{
  background:#E41B23;
  color:#fff;
  display:inline-block;
  margin:0 auto;
  width:auto;
  text-align:center;
  padding:5px 20px;
}

.vcalendar td{
  font-family: 'Roboto', sans-serif;
  font-weight:400;
  font-size:18px;

}


.vcalendar div[id*=tribe-events-daynum-]{
  background:none!important;
  text-align:left;
  margin-top:10px;

}


td.tribe-events-othermonth.tribe-events-past,
td.tribe-events-othermonth.tribe-events-future
{
  background:#d9d9d9!important;

}

/* day number in the calendar */

td.tribe-events-othermonth.tribe-events-past div[id*=tribe-events-daynum-],
td.tribe-events-othermonth.tribe-events-future div[id*=tribe-events-daynum-]
{
  color:#d9d9d9;
}

td.tribe-events-thismonth.tribe-events-past div[id*=tribe-events-daynum-],
td.tribe-events-thismonth.tribe-events-future div[id*=tribe-events-daynum-]
{
  color:#333;
}

td.tribe-events-thismonth.tribe-events-present div[id*=tribe-events-daynum-],
td.tribe-events-thismonth.tribe-events-past.tribe-events-has-events div[id*=tribe-events-daynum-],
td.tribe-events-thismonth.tribe-events-present.tribe-events-has-events div[id*=tribe-events-daynum-],
td.tribe-events-thismonth.tribe-events-future.tribe-events-has-events div[id*=tribe-events-daynum-],
td.tribe-events-othermonth.tribe-events-future.tribe-events-has-events div[id*=tribe-events-daynum-],
td.tribe-events-thismonth.tribe-events-past.tribe-events-has-events a,
td.tribe-events-thismonth.tribe-events-present.tribe-events-has-events a,
td.tribe-events-thismonth.tribe-events-future.tribe-events-has-events a,
td.tribe-events-othermonth.tribe-events-future.tribe-events-has-events a
{
  color:#fff;
}


td.tribe-events-thismonth.tribe-events-past,
td.tribe-events-thismonth.tribe-events-future{
  background:#f2f2f2;

}

td.tribe-events-thismonth.tribe-events-present{
  background:#3d3d3d;

}

td.tribe-events-thismonth.tribe-events-past:hover,
td.tribe-events-thismonth.tribe-events-present:hover{
  background:#d9d9d9!important;
}

td.tribe-events-thismonth.tribe-events-past.tribe-events-has-events{
  background:#808080;
}

td.tribe-events-thismonth.tribe-events-present.tribe-events-has-events,
td.tribe-events-thismonth.tribe-events-future.tribe-events-has-events,
td.tribe-events-othermonth.tribe-events-future.tribe-events-has-events{
  background:url(../img/arrow-down-gray.png) center 15px no-repeat #E41B23!important;

}

td.tribe-events-thismonth.tribe-events-present.tribe-events-has-events:hover,
td.tribe-events-thismonth.tribe-events-future.tribe-events-has-events:hover,
td.tribe-events-othermonth.tribe-events-future.tribe-events-has-events:hover{
  background:url(../img/arrow-down-red.png) center 15px no-repeat #3d3d3d!important;
}



.events-address-time{
  line-height:normal;
  color:#fff;
}

.events-link{
  font-size:11px;
}
  .events-link a:hover{
    border-bottom:1px solid #E41B23;
  }



/*-- event navigation -- */

.tribe-events-sub-nav li{
  background:none;
}

.tribe-events-sub-nav a{
  color:#3D3D3D;
}
.tribe-events-sub-nav a:hover{
  color:#FE8202;
}




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


@-ms-viewport { width: device-width; }


/**
 * Images
 */

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

.img-rounded { border-radius: 6px !important; }
.img-circle  { border-radius: 50% !important; }
.img-square  { border-radius: 0   !important; }


/**
 * Visiblity
 */

.show { display: block !important; }

.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg { display: none !important; }

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block { display: none !important; }

@media (max-width: 599px) {
    .visible-xxs      { display: block !important; }
    table.visible-xxs { display: table; }
    tr.visible-xxs    { display: table-row !important; }
    th.visible-xxs,
    td.visible-xxs    { display: table-cell !important; }

    .visible-xxs-block        { display: block !important; }
    .visible-xxs-inline       { display: inline !important; }
    .visible-xxs-inline-block { display: inline-block !important; }
}


@media (min-width: 600px) and (max-width: 767px) {
    .visible-xs      { display: block !important; }
    table.visible-xs { display: table; }
    tr.visible-xs    { display: table-row !important; }
    th.visible-xs,
    td.visible-xs    { display: table-cell !important; }

    .visible-xs-block        { display: block !important; }
    .visible-xs-inline       { display: inline !important; }
    .visible-xs-inline-block { display: inline-block !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .visible-sm      { display: block !important; }
    table.visible-sm { display: table; }
    tr.visible-sm    { display: table-row !important; }
    th.visible-sm,
    td.visible-sm    { display: table-cell !important; }

    .visible-sm-block        { display: block !important; }
    .visible-sm-inline       { display: inline !important; }
    .visible-sm-inline-block { display: inline-block !important; }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .visible-md      { display: block !important; }
    table.visible-md { display: table; }
    tr.visible-md    { display: table-row !important; }
    th.visible-md,
    td.visible-md    { display: table-cell !important; }

    .visible-md-block        { display: block !important; }
    .visible-md-inline       { display: inline !important; }
    .visible-md-inline-block { display: inline-block !important; }
}

@media (min-width: 1200px) {
    .visible-lg      { display: block !important; }
    table.visible-lg { display: table; }
    tr.visible-lg    {  display: table-row !important; }
    th.visible-lg,
    td.visible-lg    { display: table-cell !important; }

    .visible-lg-block        { display: block !important; }
    .visible-lg-inline       { display: inline !important; }
    .visible-lg-inline-block { display: inline-block !important; }
}


/**
 * Hiding
 */

.hide       { display: none !important; }
.hidden     { display: none !important; visibility: hidden !important; }
.invisible  { visibility: hidden !important; }
.text-hide  {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

@media (max-width: 599px) {
    .hidden-xxs { display: none !important; }
}

@media (min-width: 600px) and (max-width: 767px) {
    .hidden-xs { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hidden-sm { display: none !important; }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .hidden-md { display: none !important; }
}

@media (min-width: 1200px) {
    .hidden-lg { display: none !important; }
}


/**
 * Screen Readers
 */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}


/**
 * Print
 */

.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block { display: none !important; }

@media print {
    .visible-print      { display: block !important; }
    table.visible-print { display: table; }
    tr.visible-print    { display: table-row !important; }
    th.visible-print,
    td.visible-print    { display: table-cell !important; }

    .visible-print-block        { display: block !important; }
    .visible-print-inline       { display: inline !important; }
    .visible-print-inline-block { display: inline-block !important; }

    .hidden-print { display: none !important; }
}



/**
 * Clears
 */
.clear--left    { clear: left !important; }
.clear--right   { clear: right !important; }
.clear--both    { clear: both !important; }
.clear--contain { overflow: hidden !important; }


/**
 * Text alignment
 */
.text--left     { text-align:left  !important; }
.text--center   { text-align:center!important; }
.text--right    { text-align:right !important; }


/**
 * Font weights
 */
.weight--light      { font-weight:300!important; }
.weight--normal     { font-weight:400!important; }
.weight--semibold   { font-weight:600!important; }
.weight--bold       { font-weight:700!important; }


/**
 * Borders
 */
.border--top    { border-top:       1px solid #eee }
.border--bottom { border-bottom:    1px solid #eee }
.border--left   { border-left:      1px solid #eee }
.border--right  { border-right:     1px solid #eee }
.border--all    { border:           1px solid #eee }


/* TODO: Update pushes, flushes, softs, and hards to match your vertical rhythem */

/**
 * Add/remove margins
 */
.push           { margin:       20px!important; }
.push--top      { margin-top:   20px!important; }
.push--right    { margin-right: 20px!important; }
.push--bottom   { margin-bottom:20px!important; }
.push--left     { margin-left:  20px!important; }
.push--ends     { margin-top:   20px!important; margin-bottom:20px!important; }
.push--sides    { margin-right: 20px!important; margin-left:  20px!important; }

.push-half          { margin:       10px!important; }
.push-half--top     { margin-top:   10px!important; }
.push-half--right   { margin-right: 10px!important; }
.push-half--bottom  { margin-bottom:10px!important; }
.push-half--left    { margin-left:  10px!important; }
.push-half--ends    { margin-top:   10px!important; margin-bottom:10px!important; }
.push-half--sides   { margin-right: 10px!important; margin-left:  10px!important; }

.flush          { margin:       0!important; }
.flush--top     { margin-top:   0!important; }
.flush--right   { margin-right: 0!important; }
.flush--bottom  { margin-bottom:0!important; }
.flush--left    { margin-left:  0!important; }
.flush--ends    { margin-top:   0!important; margin-bottom:0!important; }
.flush--sides   { margin-right: 0!important; margin-left:  0!important; }


/**
 * Add/remove paddings
 */
.soft           { padding:       20px!important; }
.soft--top      { padding-top:   20px!important; }
.soft--right    { padding-right: 20px!important; }
.soft--bottom   { padding-bottom:20px!important; }
.soft--left     { padding-left:  20px!important; }
.soft--ends     { padding-top:   20px!important; padding-bottom:20px!important; }
.soft--sides    { padding-right: 20px!important; padding-left:  20px!important; }

.soft-half           { padding:       10px!important; }
.soft-half--top      { padding-top:   10px!important; }
.soft-half--right    { padding-right: 10px!important; }
.soft-half--bottom   { padding-bottom:10px!important; }
.soft-half--left     { padding-left:  10px!important; }
.soft-half--ends     { padding-top:   10px!important; padding-bottom:10px!important; }
.soft-half--sides    { padding-right: 10px!important; padding-left:  10px!important; }

.hard           { padding:       0!important; }
.hard--top      { padding-top:   0!important; }
.hard--right    { padding-right: 0!important; }
.hard--bottom   { padding-bottom:0!important; }
.hard--left     { padding-left:  0!important; }
.hard--ends     { padding-top:   0!important; padding-bottom:0!important; }
.hard--sides    { padding-right: 0!important; padding-left:  0!important; }


/**
 * Positioning
 */

.affix--top    { position: fixed!important; top:    0!important; }
.affix--bottom { position: fixed!important; bottom: 0!important; }
.affix--left   { position: fixed!important; left:   0!important; }
.affix--right  { position: fixed!important; right:  0!important; }

.pull--right { float: right!important; }
.pull--left  { float: left !important; }

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}