/**
 * CONTENTS
 *
 * GENERIC
 * Box-sizing............Better default `box-sizing`.
 * Image Aligns..........WP specific img aligns.
 *
 * BASE
 * Typography............@fontfaces, base text and vertical rhythem setup.
  * COMPONENTS
 * Wrappers..............Wrapping and constraining elements.
 * Grid System...........Bootstrap based grid.
 * Clearfix..............Properly clear floats.
 *
 * Objects
 * Icons.................Icon Elements.
 * Buttons...............Button elements.
 * Tables................Table Styles.
 * Forms.................Form Elements.
 * Breadcrumbs...........Breadcrumbs.
 * Pagination............Pagination.
 * Sliders/Carousels.....Sliders/Carousels.
 *
 * UI
 * Page head.............The main page header.
 * Navigation............Navigation elements.
 * Masthead..............Page title/image/slideshow header block.
 * Page footer...........The main page footer.
 *
 * 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
 */

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* TODO: Update image bottom margin to match paragraph margin */
a {
  word-break: break-all;
}
img.alignright,
.wp-caption.alignright,
img.alignleft,
.wp-caption.alignleft {
  height: auto;
  max-width: 50%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
  height: auto;
  max-width: 100%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
  margin: 0 0 22px 0;
}

img.alignright,
.wp-caption.alignright {
  float: right;
  margin: 0 0 22px 30px;
}

img.alignleft,
.wp-caption.alignleft {
  float: left;
  margin: 0 30px 22px 0;
}

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

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

/* Optional: use https://www.gridlover.net/try to create vertical rhythm.
    Note: you'll most likely need to modify the code generated from gridlover to match the prototypes.*/

/* Please set up line-heights in ems */

body {
  background-image: url(../img/lines-bg.png);
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  height: auto;
  margin: 0;
  width: 100%;
}

body.search {
  margin: 0;
}

.home h1,
.h1,
h1,
.h1,
.home h2,
.h2,
h2,
.h2 {
  color: #0072bd;
  font-weight: 600;
  margin: 0;
}

.home h1,
.h1 {
  font-size: 28px;
}
.home h2,
.h2 {
  font-size: 25px;
}
h1,
.h1 {
  font-size: 25px;
}
h2,
.h2 {
  font-size: 22px;
}

h3,
.h3 {
  font-size: 19px;
  font-weight: 400;
  margin: 0;
}

h4,
.h4 {
  font-weight: 600;
  margin: 0;
}

p,
ul,
ol {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  margin-top: 20px;
}

ul li {
  list-style-image: url(../img/list-icon.png);
}

hr {
}

a {
  color: #0072bd;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  color: #468ebd;
}

@media (min-width: 768px) {
  .home h1,
  .h1 {
    font-size: 40px;
  }
  .home h2,
  .h2 {
    font-size: 30px;
  }
  h1,
  .h1 {
    font-size: 30px;
  }
  h2,
  .h2 {
    font-size: 25px;
  }
  h3,
  .h3 {
    font-size: 22px;
  }
}

@media (min-width: 1025px) {
  body {
    font-size: 15px;
  }

  .home h1,
  .h1 {
    font-size: 45px;
    line-height: 44.86px;
    text-transform: capitalize;
  }

  .home h2,
  .h2 {
    font-size: 35px;
    line-height: 40px;
    text-transform: capitalize;
  }

  h1,
  .h1 {
    font-size: 35px;
    line-height: 44.86px;
    text-transform: capitalize;
  }

  h2,
  .h2 {
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
  }

  h3,
  .h3 {
    color: #333333;
    font-size: 24px;
    line-height: 40px;
    text-transform: capitalize;
  }

  p,
  ul,
  ol {
    font-size: 15px;
  }
}

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

/**
  * Wrappers
  */

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

/* TODO: If using fixed widths per size update widths below */
/*@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; }
     }*/

/* TODO: if usign a max-width fluid layout remove above media
              queries and uncomment below */

.container,
.slick-dots {
  max-width: 1311px;
}

/**
  * 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: -18px; /* TODO: Update margin number to match container padding */
  margin-right: -18px;
}

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

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

/**
  * Clearfix
  * Apply clearing without adding additional markup
  */

.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;
}

/*--------------------------------------------------------------*\
     OBJECTS
     Objects are independent generic stylibf classes or UI peices.
     All styles for objects should be self contained.

     e.g. an object shouldn't rely on trump helpers to apply padding etc.
 \*--------------------------------------------------------------*/

/**
  * Buttons
  */

.btn,
.btn-secondary {
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  padding: 14px 26px;
  text-transform: capitalize;
}

.btn {
  background-color: #0072bd;
}

.btn:hover {
  color: #fff;
  background-color: #4095ce;
}

.btn-secondary {
  background-color: #f2761f;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #f59857;
}

.btn-tertiary {
  border-radius: 5px;
  border: 2px solid #0072be;
  color: #0072bd;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 29px;
  text-transform: capitalize;
}

.btn-tertiary:hover {
  border: 2px solid #f48222;
  color: #f48222;
}

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

/**
  * Icons
  */

/* add icon code here */

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

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: 'Flaticon';
    src: url('../font/Flaticon.svg#Flaticon') format('svg');
  }
}

[class^='flaticon-']:before,
[class*=' flaticon-']:before,
[class^='flaticon-']:after,
[class*=' flaticon-']:after {
  font-family: Flaticon;
  font-size: 20px;
  font-style: normal;
  margin-left: 20px;
}

.flaticon-down:before {
  content: '\f100';
}
.flaticon-search:before {
  content: '\f101';
}
.flaticon-null:before {
  content: '\f102';
}
.flaticon-twitter:before {
  content: '\f103';
}
.flaticon-setup:before {
  content: '\f104';
}
.flaticon-minus:before {
  content: '\f105';
}
.flaticon-plus:before {
  content: '\f106';
}
.flaticon-down-arrow:before {
  content: '\f107';
}
.flaticon-phone:before {
  content: '\f108';
}
.flaticon-pin:before {
  content: '\f109';
}

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

[class^='icon-'],
[class*=' icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  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-twitter-square:before {
  content: '\f081';
}
.icon-facebook-square:before {
  content: '\f082';
}
.icon-linkedin-square:before {
  content: '\f08c';
}
.icon-chevron-small-left:before {
  content: '\e901';
}
.icon-chevron-small-right:before {
  content: '\e900';
}
.icon-chevron-up:before {
  content: '\e903';
}
.icon-close:before {
  content: '\e904';
}
.icon-envelope:before {
  content: '\e902';
}

/**
  * Tables
  */

table {
  border-collapse: collapse;
  width: 100%;
}

td {
}

tr {
}

th {
}

thead {
}

tbody {
}

tfoot {
}

/* Responsive Tables */

.table-wrap-outer:after {
  content: '';
  position: absolute;
  right: -1px; /* account for border */
  top: 0;
  height: 100%;
  width: 80px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 1))
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}

@media (min-width: 600px) {
  .table-wrap-outer:after {
    display: none;
  }

  .table-wrap-inner {
    overflow: visible !important;
  }
}

/**
  * Forms
  */

label {
  display: block;
  margin-bottom: 10px;
  margin-top: 15px;
}

select {
}

textarea {
  height: 140px !important;
  padding: 10px 13px !important;
}

/* Removes default webkit form styling */
input:not([type='radio']):not([type='checkbox']),
button,
textarea {
  -webkit-appearance: none;
}

@media (min-width: 768px) {
  label {
    margin-top: 35px;
  }
}

/* default text input style */
[type='text'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='email'],
[type='month'],
[type='number'],
[type='password'],
[type='search'],
[type='tel'],
[type='url'],
[type='week'],
[type='date'],
textarea,
.selectric {
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 300;
  height: 48px;
  padding: 0 13px;
  width: 100%;
}

input:focus,
input:active,
input:hover,
textarea:hover {
  border: 1px solid #ff964f !important;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(255, 149, 79, 1) !important;
          box-shadow: 0px 0px 6px 0px rgba(255, 149, 79, 1) !important;
}

input[type='submit']:focus,
input[type='submit']:active,
input[type='submit']:hover {
  border: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* Default Submit Button Style */
[type='submit'] {
  border: 0;
  float: right;
  margin-top: 30px;
  padding: 13px 30px;
}

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border: none;
  padding: 0;
}

/* Default Radio/Checkbox Style (if using CF7) */
.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item-label {
  display: inline-block;
  margin-left: 5px;
}

/* Selectric */

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 14px;
  line-height: 45px;
  color: #444;
  height: 38px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 48px;
  line-height: 38px;
  background-color: #f8f8f8;
  color: #bbb;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #bbb;
  border-bottom: none;
}

.selectric-focus .selectric {
  border-color: #aaaaaa;
}

.selectric-hover .selectric {
  border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
  color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 88;
}

.selectric-open.selectric-below .selectric {
  border-color: #c4c4c4;
  border-radius: 5px 5px 0px 0px;
}

.selectric-open.selectric-above .selectric {
  border-color: #c4c4c4;
  border-radius: 0px 0px 5px 5px;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */

.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #c4c4c4;
  z-index: -1;
  /*box-shadow: 0 0 10px -6px;*/
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul,
.selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer;
}

.selectric-items li.selected {
  background: #0072bd;
  color: #fff;
}

.selectric-items li.highlighted {
  background: #0072bd;
  color: #fff;
}

.selectric-items li:hover {
  background: #037dc6;
  color: #fff;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

/*----------------------------------------------------------------------------------------------------
 General styling
 ----------------------------------------------------------------------------------------------------*/

@-webkit-keyframes fstAnimationEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -1em, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes fstAnimationEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -1em, 0);
    transform: translate3d(0, -1em, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fstElement {
  display: inline-block;
  position: relative;
  border: 1px solid #c5c5c5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  color: #232323;
  height: 48px;
  background-color: #fff;
  width: 100%;
}

.fstElement > select,
.fstElement > input {
  position: absolute;
  left: -999em;
}

.fstToggleBtn {
  font-size: 1.4em;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.71429em 1.42857em 0.71429em 0.71429em;
  min-width: 14.28571em;
  cursor: pointer;
}

.fstToggleBtn:after {
  position: absolute;
  content: '';
  right: 0.71429em;
  top: 50%;
  margin-top: -0.17857em;
  border: 0.35714em solid transparent;
  border-top-color: #cacaca;
}

.fstQueryInput {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  border: 0;
}

.fstResults {
  position: absolute;
  left: -1px;
  top: 94%;
  right: -1px;
  max-height: 13.4em;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #d7d7d7;
  border-top: 0;
  background-color: #fff;
  display: none;
}

.fstResultItem {
  font-size: 1.4em;
  display: block;
  padding: 10px 15px;
  margin: 0;
  cursor: pointer;
  border-top: 1px solid #fff;
}

.fstResultItem.fstUserOption {
  color: #707070;
}

.fstResultItem.fstFocused {
  color: #fff;
  background-color: #43a2f3;
  border-color: #73baf6;
}

.fstResultItem.fstSelected {
  color: #fff;
  background-color: #2694f1;
  border-color: #73baf6;
}

.fstGroupTitle {
  font-size: 1.4em;
  display: block;
  padding: 0.5em 0.71429em;
  margin: 0;
  font-weight: bold;
}

.fstGroup {
  padding-top: 1em;
}
.fstGroup:first-child {
  padding-top: 0;
}

.fstNoResults {
  font-size: 1.4em;
  display: block;
  padding: 0.71429em 0.71429em;
  margin: 0;
  color: #999;
}

.fstElement .fstControls input:focus,
.fstElement .fstControls input:active,
.fstElement .fstControls input:hover {
  border: 0;
  -webkit-box-shadow: 0 0 0 0 rgba(219, 219, 219, 1);
          box-shadow: 0 0 0 0 rgba(219, 219, 219, 1);
}

/*----------------------------------------------------------------------------------------------------
 Single Mode
 ----------------------------------------------------------------------------------------------------*/

.fstSingleMode .fstControls {
  position: absolute;
  left: -1px;
  right: -1px;
  top: 100%;
  padding: 0.5em;
  border: 1px solid #d7d7d7;
  background-color: #fff;
  display: none;
}

.fstSingleMode .fstQueryInput {
  font-size: 1.4em;
  display: block;
  width: 100%;
  padding: 0.5em 0.35714em;
  color: #999;
  border: 1px solid #d7d7d7;
}

.fstSingleMode.fstActive {
  z-index: 100;
}
.fstSingleMode.fstActive.fstElement,
.fstSingleMode.fstActive .fstControls,
.fstSingleMode.fstActive .fstResults {
  -webkit-box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, 0.1);
}
.fstSingleMode.fstActive .fstControls {
  display: block;
}
.fstSingleMode.fstActive .fstResults {
  display: block;
  z-index: 10;
  margin-top: -1px;
}

/*----------------------------------------------------------------------------------------------------
 Multiple mode
 ----------------------------------------------------------------------------------------------------*/

.fstChoiceItem {
  display: inline-block;
  font-size: 13px;
  position: relative;
  margin: 0 8px 5px 0;
  padding: 0.33333em 0.33333em 0.33333em 1.5em;
  float: left;
  border-radius: 0.25em;
  border: 1px solid #43a2f3;
  cursor: auto;
  color: #fff;
  background-color: #43a2f3;
  -webkit-animation: fstAnimationEnter 0.2s;
  animation: fstAnimationEnter 0.2s;
}

.fstChoiceItem.mod1 {
  background-color: #f9f9f9;
  border: 1px solid #d7d7d7;
  color: #232323;
}

.fstChoiceItem.mod1 > .fstChoiceRemove {
  color: #a4a4a4;
}

.fstChoiceRemove {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  font-size: 1.16667em;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.28571em;
  line-height: 1.28571em;
  margin-top: -0.64286em;
  text-align: center;
  color: #fff;
}
.fstChoiceRemove::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.fstChoiceRemove:before {
  content: url(../img/close.png);
  display: block;
}

.fstMultipleMode .fstControls {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 9px 10px;
  overflow: hidden;
  width: 100%;
  cursor: text;
  height: 38px;
}

.fstMultipleMode .fstQueryInput {
  font-size: 0;
  float: left;
  padding: 0;
  margin: 0;
  width: 2em;
  color: #999;
}

.fstMultipleMode .fstQueryInputExpanded {
  float: none;
  width: 100%;
  padding: 0;
}

.fstMultipleMode .fstFakeInput {
  font-size: 1.4em;
}

.fstMultipleMode.fstActive,
.fstMultipleMode.fstActive .fstResults {
  -webkit-box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, 0.1);
}

.fstMultipleMode.fstActive .fstResults {
  display: block;
  z-index: 10;
  border-top: 1px solid #d7d7d7;
}

.fstElement.fstMultipleMode .selectric-wrapper,
.fstElement.fstMultipleMode.fstNoneSelected .selectric-wrapper {
  display: none;
}

.fstMultipleMode.fstActive .fstResults::-webkit-scrollbar {
  width: 1em;
}

.fstMultipleMode.fstActive .fstResults::-webkit-scrollbar-track {
  border: 1px solid #c8c8c8;
  padding: 20px;
}

.fstMultipleMode.fstActive .fstResults::-webkit-scrollbar-thumb {
  width: 2px;
  background-color: #c8c8c8;
  outline: 1px solid slategrey;
  border-radius: 10px;
  padding: 20px;
}

/* CF7 Validation (Replace if not using CF7) */

.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 35px;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
  color: #ff0000;
  display: block;
  margin-top: 10px;
}

select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .selectric {
  border: 1px solid #ff0000;
  color: #ff0000;
}

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

/**
  * Breadcrumbs
  */

.breadcrumbs-section {
  border-top: 10px solid #0072bd;
  position: relative;
}
.breadcrumb {
  display: none;
}

@media (min-width: 1025px) {
  .breadcrumbs-section:before {
    background-color: #ff7212;
    content: '';
    display: block;
    width: 10%;
    height: 27px;
    position: absolute;
    top: -10px;
    left: 0;
  }

  .breadcrumb {
    background-color: #ff7212;
    padding: 0;
    display: inline;
    position: absolute;
    top: -10px;
    z-index: 2;
    height: 27px;
  }

  .breadcrumb:after {
    color: #fff;
    background-color: #ff7212;
    -webkit-transform: skew(-217deg);
    -ms-transform: skew(-217deg);
        transform: skew(-217deg);
    display: inline-block;
    position: absolute;
    top: 0;
    height: 100%;
    content: '';
    width: 100%;
    left: 15%;
    z-index: -1;
  }

  .breadcrumb {
    padding-top: 5px;
  }

  .breadcrumb ul {
    margin: 0;
    padding: 0;
    z-index: 1;
  }

  .breadcrumb li {
    display: inline-block;
    list-style: none;
  }

  .breadcrumb,
  .breadcrumb a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
  }

  .breadcrumb a:after {
    content: '/';
    display: inline-block;
    margin: 0 8px;
  }

  .breadcrumb a:hover {
    text-decoration: underline;
  }
}

@media (min-width: 1100px) {
  .breadcrumbs-section:before {
    width: 12%;
  }
}

@media (min-width: 1680px) {
  .breadcrumbs-section:before {
    width: 17%;
  }
}

/**
  * Pagination
  */

.pagination {
}

/**
  * Sliders/Carousels
  * Slick Slider - http://kenwheeler.github.io/slick/
  */

/* General styling */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  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);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[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;
}

.slick-slide,
.slick-slide:focus * {
  outline: none !important;
}

.slick-initialized .slick-slide {
  float: none;
  display: inline-block;
  vertical-align: top;
}

/* Preload affect */

.slick-slider .slide {
  display: none;
}

.slick-slider .slide:first-child {
  display: block;
}

.slick-slider.slick-initialized .slide {
  display: block;
}

.js-slider-has-preloader {
  /* Add this class to your slider */
  min-height: 50px;
  position: relative;
}

.js-slider-has-preloader:before {
  content: url('../img/loading.gif'); /* Create and upload a loading gif to your image directory */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px; /* Update width based on gif size */
  height: 50px; /* Update height based on gif size */
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}

.js-slider-has-preloader-init:before {
  -webkit-transform: scale(0);
          -ms-transform: scale(0);
      transform: scale(0);
}

/* Icons */

@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;

  src: url('../font/slick.eot');
  src: url('../font/slick.eot?#iefix') format('embedded-opentype'),
    url('../font/slick.woff') format('woff'),
    url('../font/slick.ttf') format('truetype'),
    url('../font/slick.svg#slick') format('svg');
}

/* Arrows */

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;

  position: absolute;
  top: 50%;

  display: block;

  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);

  cursor: pointer;

  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;

  opacity: 0.75;
  color: white;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '?';
}

[dir='rtl'] .slick-prev:before {
  content: '?';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '?';
}

[dir='rtl'] .slick-next:before {
  content: '?';
}

/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}

.slick-dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: '�';
  text-align: center;

  opacity: 0.25;
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/* Custom styling per slider/carousel */

/* --------------------------------------------------*\
     UI
     UI peices are site specific non generic styles.
     eg: header, footer, sidebar, page specific styles
 \* -----------------------------------------------------*/

/**
  * Page-head
  */

.page-header {
  background-color: #fff;
  position: relative;
  height: 123px;
}

.page-header-main {
  border-bottom: 1px solid #dddddd;
}

.page-header-main .menu-btn,
.page-header-main .search {
  cursor: pointer;
  display: block;
  padding: 20px 0;
  text-align: center;
}

.page-header-main p {
  font-size: 8px;
  font-weight: 600;
  line-height: 4px;
  margin: 0;
  text-transform: uppercase;
}

.page-header-main span {
  color: #0072bd;
  display: block;
  text-align: center;
}

.page-header-main span:before {
  font-size: 28px;
  margin: 0 0 0 -1px;
}

.logo {
  background-image: url(../img/sticky-logo.jpg);
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin-top: 10px;
  height: 75px;
  width: 100%;
}

.page-header-bottom {
  background-color: #f2761f;
}

.page-header-bottom a {
  color: #fff;
  display: inline-block;
  margin-right: -4px;
  padding: 7px 0 8px 0;
  text-align: center;
  text-transform: capitalize;
  width: 50%;
}
.page-header-bottom a:last-child {
  background-color: #0072bd;
}

.right-link form input {
  height: 25px;
  padding: 0;
}

.page-header-main .search span {
  border-left: 1px solid #c5c5c5;
  height: 38px;
  padding-left: 11px;
}

.nav-icon {
  border-right: 1px solid #c5c5c5;
  height: 38px;
  padding-right: 42px;
}

.nav-icon:before {
  content: '\f104';
  display: inline-block;
  font-family: 'flaticon';
}

.icon-active .nav-icon:before {
  content: '\e904';
  font-family: 'icomoon';
}

.search-form {
  background-color: #0072bd;
  display: none;
  position: absolute;
  width: 100%;
  z-index: 99;
  padding: 20px 83px 20px 20px;
  margin-left: 0px;
  left: 0;
  right: 0;
}

.search-form a {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  display: inline-block;
  position: absolute;
  right: 3%;
  background-color: #ff7212;
  padding: 9px;
}

.search-form span {
  color: #fff;
}

.search-form span:before {
  margin-left: 0;
  color: #fff;
  font-size: 16px;
  padding: 0px 8px;
}

.search-form input {
  padding-right: 45px;
}

.search-form button {
  right: 23px;
  position: absolute;
  height: 50px;
  border: 0;
  border-radius: 0px 5px 5px 0px;
  background-color: #ff730a;
}

.search-form input {
  padding-right: 45px;
  text-transform: capitalize;
}

@media (min-width: 600px) {
  .search-form a {
    right: 2%;
  }

  .page-header-main .search span {
    padding-left: 0;
  }

  .nav-icon {
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .page-header {
    height: 115px;
  }
  .nav-icon {
    padding-right: 40px;
  }
  .search {
    margin: 0 0 0 -25px;
  }

  .logo {
    margin-top: 0;
  }
}

@media (min-width: 1025px) {
  .desktop-head,
  .page-header {
    height: 99px;
  }

  .logo {
    background-image: url(../img/logo.jpg);
    background-repeat: no-repeat;
    background-position: left;
    display: block;
    margin-top: 0;
    height: 98px;
    width: 100%;
  }

  .right-link {
    margin: 0;
    padding: 35px 0;
    position: absolute;
    right: 5%;
  }

  .right-link li {
    border-right: 1px solid #c5c5c5;
    display: inline-block;
    list-style: none;
    padding-right: 12px;
  }

  .right-link li:last-child {
    border-right: 0;
    margin-left: 3px;
    padding-right: 0;
  }

  .right-link a {
    font-size: 14px;
    font-weight: 600;
  }

  .right-link span:before {
    font-size: 13px;
    margin-left: 15px;
    margin-right: 5px;
  }

  .right-link .btn-secondary {
    font-size: 17px;
    padding: 15px 23px;
  }

  .right-link .search-desk {
    color: #333;
    text-transform: capitalize;
  }

  .right-link input {
    border: 0;
    color: #333;
    width: 59px;
    text-transform: capitalize;
  }

  .right-link .flaticon-search {
    color: #333;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 250px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
  }

  .modal-content {
    margin: auto;
    width: 50%;
  }

  .close {
    background-color: #ff7212;
    color: #fff;
    float: right;
    font-size: 30px;
    font-weight: bold;
    padding: 0 13px;
  }

  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  .search-form {
    display: inline-block;
    position: relative;
    z-index: 99;
    padding: 40px 83px 40px 20px;
    margin: 0 auto;
  }

  .search-form a {
    right: 3%;
    padding: 14px 14px 13px;
  }

  .search-form span {
    color: #333;
  }

  /*Page Header Scrolled*/

  .page-header {
    background-color: #fff;
    border-bottom: 1px solid #dddddd;
    position: fixed;
    z-index: 999;
    top: 0;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    width: 100%;
  }

  main {
    margin-top: 65px;
  }
}

@media (min-width: 1100px) {
  .right-link li {
    padding-right: 20px;
  }

  .right-link li:last-child {
    margin-left: 16px;
  }
}

/* Fix sticky header position for when admin bar visible
    TODO: Uncomment if design has sticky header */

.admin-bar .page-header {
  top: 32px;
}

.admin-bar main {
  margin-top: 98px;
}

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

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  /* TODO: Add Retina-specific logo here */
}

/**
  * Navigation
  */

.nav-primary {
  background-color: #fff;
  border-top: 1px solid #e8e8e8;
  position: absolute;
  z-index: 99;
  display: none;
  width: 100%;
  left: 0;
  top: 69%;
}

.nav-primary ul {
  margin: 0;
  padding: 0;
}

.nav-primary li {
  border-bottom: 1px solid #e8e8e8;
  list-style: none;
}

.nav-primary li:hover {
  background-color: #f3f3f3;
  color: #0072bd !important;
}

.nav-primary span {
  display: inline-block;
}

.nav-primary span:before {
  font-size: 7px;
  font-weight: 400;
}

.nav-primary a {
  color: #333333;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 18px;
}

@media (min-width: 768px) {
  .nav-primary {
    top: 68%;
  }
}

@media (min-width: 1025px) {
  .nav-primary {
    background-color: transparent;
    display: inline-block !important;
    left: 26%;
    top: 0;
    padding: 36px 0 0;
    width: 82%;
  }

  .nav-primary li {
    border: 0;
    display: inline-block;
    list-style: none;
    padding: 0 20px 30px 10px;
  }

  .nav-primary li:hover {
    background-color: transparent;
  }

  .nav-primary a {
    font-weight: 600;
    padding: 0;
  }

  .nav-primary a:hover,
  .sub-menu-toggle.js-toggled::before {
    color: #0072bd !important;
  }

  .nav-primary .menu-item-30 a:after,
  .nav-primary .menu-item-has-children a:after {
    content: '\f100';
    font-family: 'flaticon';
    font-size: 7px;
    display: inline-block;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    font-weight: normal;
    margin-left: 7px;
    position: relative;
    right: 3%;
  }

  .nav-primary .sub-menu a:after {
    display: none;
  }
  .nav-primary a:hover:after {
    -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
  }
  .page-header .current_page_parent a:after,
  .page-header .current_page_item a:after {
    -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
  }
  .nav-primary .menu-item:hover .sub-menu {
    display: block;
  }
  .current_page_parent > a,
  .current_page_item > a {
    color: #0072bd !important;
  }
}

@media (min-width: 1100px) {
  .nav-primary {
    left: 25%;
  }
}

@media (min-width: 1300px) {
  .nav-primary {
    left: 21%;
  }
}

/**
  * Sub-navigation
  */

.nav-primary,
.nav-primary .sub-menu,
.nav-primary .sub-menu ul {
  display: none;
}
.sub-menu.js-toggled {
  display: block;
}
.nav-primary .sub-menu.js-toggled {
  display: block;
}
.sub-menu ul.js-toggled {
  max-height: 55em;
}

/**
  *  Submenu
  */

.sub-menu {
  background-color: #f3f3f3;
  padding-left: 0;
}

.sub-menu li {
  padding-left: 20px;
}

.sub-menu a {
  color: #797979;
}

.sub-menu-toggle {
  color: #333 !important;
  cursor: pointer;
  margin-top: 9px;
  position: absolute;
  right: 3%;
}

.sub-menu-toggle.js-toggled {
  -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
      transform: rotate(-180deg);
}

@media (min-width: 768px) {
  .sub-menu-toggle {
    right: 2%;
  }
}

@media (min-width: 1025px) {
  .sub-menu {
    background-color: #fff;
    position: absolute;
    margin-top: 25px !important;
    padding: 0 30px 0 0px !important;
  }

  .sub-menu li {
    border: 0;
    display: block;
    padding: 0;
  }

  .sub-menu a {
    padding: 10px 18px;
  }
}

/**
  * Masthead
  */

.masthead {
  background-color: #fff;
  display: block;
  position: relative;
  height: 459px;
}

.masthead-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 400px;
  position: relative;
}

.masthead-blank {
  height: 212px;
}

.mastwrap {
  margin: 0;
  padding: 0;
}

.masthead-content {
  background-color: rgba(255, 255, 255, 0.85);
  min-height: 247px;
  padding: 0 18px;
  width: 100%;
}

.masthead-content .btn-tertiary {
  border: 0;
  color: #f2761f;
  padding: 0;
}

.masthead-content .btn-tertiary:after {
  content: '\e900';
  display: inline-block;
  font-family: 'icomoon';
  position: relative;
  top: 2px;
}

.masthead-content .btn-tertiary:hover {
  color: #0072bd;
}

.masthead .slick-dots {
  position: absolute;
  bottom: 17px;
  display: block;
  width: 100%;
  padding: 0 18px;
  margin: -25px auto 0;
  left: 0;
  list-style: none;
  text-align: left;
}

.masthead .slick-dots li {
  background-color: #ebebeb;
  position: relative;
  display: inline-block;
  width: 46px;
  height: 7px;
  margin: 0 7px 0 0;
  padding: 0;
  cursor: pointer;
}

.masthead .slick-dots .slick-active {
  background-color: #f2761f;
}

.masthead .slick-dots li button::before {
  content: '';
}

.masthead.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.masthead-inner {
  border-top: 1px solid #dddddd;
  padding: 30px 0;
}

.masthead-inner-quote,
.masthead-inner-quote:after {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 0;
  width: 100%;
}

.masthead-inner-quote {
  background-image: url(../img/page-woman-banner.jpg);
  background-position: top;
  min-height: 130px;
  position: relative;
  z-index: 1;
}

.masthead-inner-quote:after {
  background-image: url(../img/quote-opacity.png);
  content: '';
  display: block;
  min-height: 50px;
  position: absolute;
  top: 0;
  z-index: -1;
}

.masthead-inner-quote h1 {
  color: #fff;
  font-size: 28px;
}

@media (min-width: 768px) {
  .masthead,
  .masthead-image {
    min-height: 465px;
  }
  .masthead-image:before {
    background-image: url(../img/opacity-tablet.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    content: '';
    display: block;
    min-height: 465px;
    position: absolute;
    width: 67%;
  }

  .masthead-content {
    background-color: transparent;
    min-height: 433px;
    padding: 70px 0 85px 30px;
  }

  .masthead-content .btn-tertiary {
    border-radius: 5px;
    border: 2px solid #0072be;
    color: #0072bd;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    padding: 13px 29px;
    text-transform: capitalize;
  }

  .masthead-content .btn-tertiary:after {
    display: none;
  }

  .masthead-content .btn-tertiary:hover {
    border: 2px solid #f2761f;
    color: #f2761f;
  }

  .masthead-content p {
    font-size: 18px;
  }

  .masthead .slick-dots {
    padding: 0 30px;
    position: relative;
    bottom: 82px;
  }

  .masthead .slick-dots li {
    background-color: #fff;
  }

  .masthead.slick-dotted.slick-slider {
    margin-bottom: -5px;
  }

  .masthead-inner-quote,
  .masthead-inner-quote:after {
    padding: 200px 0;
  }

  .masthead-inner-quote {
    min-height: 450px;
  }

  .masthead-inner-quote:after {
    min-height: 55px;
  }

  .masthead-inner-quote h1 {
    font-size: 40px;
  }

  h1.woocommerce-products-header__title.page-title {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

@media (min-width: 1025px) {
  .masthead,
  .masthead-image,
  .masthead-image:before {
    min-height: 635px;
  }
  .masthead-content {
    width: 500px;
    padding: 165px 24px 0 24px;
  }

  .masthead-content p {
    font-size: 20px;
  }

  .masthead .slick-dots {
    bottom: 170px;
    padding: 0 24px;
  }

  .masthead .slick-dots li {
    width: 75px;
  }

  .masthead-inner-quote h1 {
    font-size: 45px;
  }

  .masthead-inner {
    padding: 64px 0;
  }

  .masthead-inner-quote:after {
    min-height: 50px;
  }
}

@media (min-width: 1100px) {
  .masthead-content {
    right: 7%;
  }
}

@media (min-width: 1200px) {
  .masthead-content {
    right: 15%;
  }
}

@media (min-width: 1300px) {
  .masthead-content {
    right: 19%;
  }
}

/**
  * slider Products
  */

.slider-products {
  background-color: #fff;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  position: relative;
}

.slider-products ul {
  border-bottom: 0;
  border-top: 0;
  list-style: none;
  padding: 0;
  width: 100%;
}

.slider-products li {
  text-align: center;
}

.slider-products p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 0;
}

.slider-products span {
  color: #f2761f;
  font-size: 12px;
  font-weight: 800;
  text-transform: capitalize;
}

.slider-products span:after {
  content: '\e900';
  display: inline-block;
  font-family: 'icomoon' !important;
}

.slider-products a {
  color: #333;
  display: block;
}

.slider-products a:hover,
.slider-products a:hover p {
  color: #0072bd;
  font-weight: 600;
}

.product-item li .product-cat {
  background-position: center bottom;
  background-repeat: no-repeat;
  height: 40px;
  width: 100%;
}

.slick-slide img {
  margin: 0 auto;
}

.product-item .slick-prev:before,
.product-item .slick-next:before {
  color: #afafaf;
  display: block;
  font-family: 'icomoon';
  font-size: 17px;
}

.product-item .slick-prev:before {
  content: '\e901';
  margin-left: 10px;
}

.product-item .slick-next:before {
  content: '\e900';
  margin-right: 10px;
}

.product-item .slick-prev,
.product-item .slick-next {
  background-color: #fff;
  height: 90px;
  width: 30px;
  z-index: 3;
}

.product-item .slick-prev {
  border-right: 1px solid #c5c5c5;
}
.product-item .slick-next {
  border-left: 1px solid #c5c5c5;
}

.product-item .slick-prev.slick-disabled,
.product-item .slick-next.slick-disabled,
.product-item .slick-prev.slick-disabled:before,
.product-item .slick-next.slick-disabled:before {
  border: 0;
  color: transparent;
}

.slider-products.js-hover ul,
.slider-products.sp-hover ul {
  margin: 8px auto;
}

.page-header .slider-products {
  background-color: #ebebeb;
  height: 106px;
  z-index: 10;
  top: -1px;
  visibility: hidden;
  -webkit-transition: all 5s ease-in-out;
  -o-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;
}

.page-header .slider-products.visible {
  visibility: visible !important;
  display: block !important;
}

.slider-products.js-hover,
.slider-products.sp-hover,
.page-header .slider-products .product-item .slick-prev,
.page-header .slider-products .product-item .slick-next {
  background-color: #ebebeb;
}

@media (min-width: 768px) {
  .slider-products {
    background-color: #fff;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    -webkit-box-shadow: -2px 64px 53px -2px rgba(219, 219, 219, 1);
            box-shadow: -2px 64px 53px -2px rgba(219, 219, 219, 1);
    position: relative;
    z-index: 1;
  }

  .slider-products p {
    font-size: 15px;
  }

  .page-header .slider-products {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .page-header .slider-products.js-hover,
  .page-header .slider-products.sp-hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (min-width: 1025px) {
  .page-header .slider-products.js-hover li,
  .page-header .slider-products.sp-hover li,
  .page-header .slider-products.js-hover a,
  .page-header .slider-products.sp-hover a {
    width: 162px !important;
  }

  .page-header .slider-products {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(243, 243, 243, 1);
            box-shadow: 0px 0px 0px 0px rgba(243, 243, 243, 1);
    z-index: 100;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .page-header .slider-products.js-hover,
  .page-header .slider-products.sp-hover {
    background-color: #fff;
    border-bottom: 1px solid #dddddd;
    display: block;
    height: 106px;
    position: absolute;
    top: 98px;
    z-index: 9;
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    visibility: visible;
  }

  .slider-products.sp-hover p,
  .slider-products.js-hover p {
    font-size: 14px;
  }

  .page.js-scrolled .slider-products.js-hover,
  .page.js-scrolled .slider-products.sp-hover {
    top: 75px;
  }

  .page-header .slider-products .product-item .slick-prev,
  .page-header .slider-products .product-item .slick-next,
  .slider-products.js-hover,
  .slider-products.sp-hover {
    background-color: #fff;
  }
}

@media (min-width: 1100px) {
  .page-header .slider-products.js-hover a,
  .page-header .slider-products.sp-hover a {
    width: 152px !important;
  }
}

@media (min-width: 1200px) {
  .page-header .slider-products.js-hover a,
  .page-header .slider-products.sp-hover a {
    width: 167px !important;
  }
}

@media (min-width: 1300px) {
  .page-header .slider-products.js-hover a,
  .page-header .slider-products.sp-hover a {
    width: 180px !important;
  }
}

/**
  * Text Section
  */

.text-with-background-section {
  background-color: #f3f3f3;
  padding: 50px 18px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .text-with-background-section {
    background-color: #fff;
    padding: 0;
  }

  .text-desc {
    padding: 77px 18px 63px 18px;
  }

  .pack-solutions {
    background-image: url(../img/solutions.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 557px;
    position: relative;
    width: 100%;
    z-index: 1;
  }
}

@media (min-width: 1025px) {
  .text-with-background-section {
    position: relative;
  }

  .text-desc {
    padding: 180px 0 180px 132px;
    position: absolute;
    width: 630px;
    right: 0;
  }

  .pack-solutions {
    min-height: 661px;
  }
}

@media (min-width: 1200px) {
  .text-desc {
    padding: 180px 0 180px 49px;
  }
}

@media (min-width: 1300px) {
  .text-desc {
    padding: 180px 0 180px 0;
  }
}

/**
  * CTA - Banner
  */

.cta-wrap {
  margin: 0;
  padding: 0;
}

.page-body .cta-bg,
.cta-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 196px;
  position: relative;
  width: 100%;
}

.page-body .cta-bg {
  background-image: url(../img/page-banner.png);
}

.cta-bg {
  background-image: url(../img/page-woman-banner.jpg);
}

.packaging {
  background-color: #fff;
  border-bottom: 10px solid #f48222;
  padding: 45px 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.packaging:after {
  content: '';
  display: block;
  background-image: url(../img/blue-line.png);
  background-repeat: no-repeat;
  height: 10px;
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 58%;
}

.page-body .packaging h2 {
  color: #333;
  font-weight: 400 !important;
}

.page-body .packaging h2,
.packaging h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
}

.packaging p {
  font-size: 14px;
}

.packaging .btn-secondary {
  display: inline-block;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .cta-wrap {
    margin: 0;
    padding: 0 18px;
  }

  .cta-banner,
  .packaging {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
        transform: scaleX(-1);
  }
  .cta-banner {
    background-image: url(../img/page-woman-banner.jpg);
    background-position: left;
  }

  .page-body .cta-banner {
    background-image: url(../img/page-banner.png);
    background-position: center;
  }

  .page-body .cta-banner,
  .cta-banner {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 721px;
    padding: 122px 0;
    position: relative;
    width: 100%;
  }

  .packaging {
    padding: 62px 36px;
  }

  .packaging:after {
    width: 63%;
  }

  .page-body .packaging h2,
  .packaging h2 {
    font-size: 25px;
    line-height: 34px;
  }

  .packaging p {
    font-size: 15px;
  }
}

@media (min-width: 1025px) {
  .cta-banner {
    background-position: center;
  }

  .cta-banner,
  .packaging {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
        transform: scaleX(1);
  }

  .cta-banner:after {
    background: url(../img/opacity-white.png) right no-repeat;
    content: '';
    position: absolute;
    top: -48px;
    width: 100%;
  }
  .cta-banner,
  .cta-banner:after {
    min-height: 721px;
    padding: 60px 0;
  }

  .page-body .cta-banner:after {
    display: none;
  }

  .packaging {
    border-bottom: 10px solid #f48222;
    padding: 67px 50px;
  }

  .page-body .packaging h2,
  .packaging h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (min-width: 1300px) {
  .cta-banner,
  .cta-banner:after {
    min-height: 687px;
    padding: 100px 0;
  }
}

/**
  * Image - Description Section
  */

.image-desc_section {
  text-align: center;
  padding: 50px 0 0 0;
  position: relative;
}

.image-desc_section h2 {
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
}

.dpd-wrap {
  margin: 0;
  padding: 0;
}

.services-item {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 249px;
  position: relative;
  width: 100%;
}

.services-item img {
  width: 100%;
}

.serv-overlay {
  display: none;
}

.serv-desc {
  background-color: #fff;
  min-height: 252px;
  padding: 20px 26px;
  position: relative;
  text-align: left;
  top: -45px;
}

.services-item .btn {
  display: none;
}

.serv-desc h3:after {
  background-color: #f2761f;
  content: '';
  display: block;
  height: 4px;
  margin-bottom: 15px;
  margin-top: 10px;
  width: 12%;
}

.serv-desc .btn-tablet {
  display: none;
}

.service-link {
  color: #0072bd;
  display: block;
  font-size: 12px;
  font-weight: 600;
  padding-top: 10px;
  text-transform: capitalize;
  text-align: right;
}

.service-link:after {
  content: '\e900';
  font-family: 'icomoon';
  font-weight: 400;
  font-size: 13px;
  display: inline-block;
  position: relative;
  top: 2px;
}

.service-link:hover {
  color: #f2761f;
}

@media (min-width: 768px) {
  .dpd-wrap,
  .dpd-wraps {
    margin: 0;
    padding: 0 75px;
  }

  .image-desc_section {
    padding: 70px 0;
  }

  .image-desc_section h2 {
    margin-bottom: 25px;
  }

  .serv-desc h3:after {
    margin: 20px 0;
  }

  .services-item,
  .services-item img {
    min-height: 400px;
  }

  .serv-desc {
    border-bottom: 11px solid #0072bd;
    margin-bottom: 35px;
    min-height: 319px;
    top: 0;
  }

  .serv-desc:after,
  .serv-desc:before {
    background-color: #f2761f;
    bottom: -10px;
    content: '';
    display: block;
    height: 10px;
    position: absolute;
  }

  .serv-desc:after {
    width: 50%;
    right: 0;
  }

  .serv-desc:before {
    width: 15px;
    z-index: 1;
    right: 49%;
    -webkit-transform: skewX(45deg);
    -ms-transform: skewX(45deg);
        transform: skewX(45deg);
  }

  .services-item .btn-tablet {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    display: block;
    right: 0;
    bottom: 0;
    padding: 18px 54px;
    position: absolute;
  }

  .morecontent span {
    display: block;
  }
}

@media (min-width: 1025px) {
  .image-desc_section {
    padding: 104px 0;
  }

  .image-desc_section h2 {
    margin-bottom: 50px;
  }

  .dpd-wrap,
  .dpd-wraps {
    margin: 0;
    padding: 0;
  }

  .dpd-wrap:nth-child(3),
  .dpd-wrap:nth-child(7) {
    left: 50%;
  }

  .dpd-wraps:nth-child(4),
  .dpd-wraps:nth-child(8) {
    right: 50%;
  }

  .dpd-wraps:nth-child(4) .serv-desc::before,
  .dpd-wraps:nth-child(8) .serv-desc::before {
    display: none;
  }

  .dpd-wraps:nth-child(4) .serv-desc::after,
  .dpd-wraps:nth-child(8) .serv-desc::after {
    background-color: #f2761f;
    bottom: -9.5px;
    content: '';
    display: block;
    height: 9.5px;
    position: absolute;
    width: 15px;
    z-index: 1;
    right: -5px;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
        transform: skewX(-45deg);
  }

  .services-item .btn {
    display: none;
  }

  .services-item .btn-left {
    bottom: -9px;
    border-top-left-radius: 0;
    left: 0;
    position: absolute;
  }

  .services-item.serv-right .btn-right {
    right: 0 !important;
    bottom: -9px;
    border-top-right-radius: 0;
    position: absolute;
  }

  .services-item {
    border-bottom: 10px solid #0072bd;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
  }
  .services-item,
  .services-item img {
    min-height: 465px;
  }

  .serv-overlay {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  .services-item:hover .serv-overlay {
    opacity: 1;
    background-color: rgba(64, 149, 206, 0.7);
  }

  .serv-overlay p {
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    text-align: center;
  }

  .serv-overlay a:hover {
    color: #fff;
  }

  .serv-desc {
    background-color: #fff;
    border-bottom: 10px solid #f2761f;
    margin-bottom: 0;
    min-height: 465px;
    padding: 32px 58px 17px 58px;
    text-align: left;
  }

  .serv-desc:before {
    background-color: #f2761f;
    bottom: -9.5px;
    content: '';
    display: block;
    height: 9.5px;
    position: absolute;
    width: 15px;
    z-index: 1;
  }

  .serv-desc:before {
    left: -5px;
    -webkit-transform: skewX(45deg);
    -ms-transform: skewX(45deg);
        transform: skewX(45deg);
  }

  .serv-desc.serv-left:before {
    display: none;
  }

  .serv-desc .btn-tablet {
    display: none;
  }
}

@media (min-width: 1300px) {
  .serv-desc {
    padding: 60px 58px 17px 58px;
  }
}

/**
  * Map
  */

.white-bg-map {
  background-color: #fff;
  min-height: 571px;
  padding: 44px 0;
  text-align: center;
  width: 100%;
}

.white-bg-map h2 {
  line-height: 35px;
  margin-top: 20px;
}

.white-bg-map .btn {
  display: inline-block;
  margin-top: 17px;
}

@media (min-width: 768px) {
  .white-bg-map {
    min-height: 465px;
    text-align: left;
    padding: 73px 0;
  }

  .map-bg:after {
    background-image: url(../img/opacity-tablet.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    content: '';
    display: block;
    min-height: 380px;
    position: absolute;
    width: 58%;
    z-index: -1;
    top: 0;
  }
  .map-bg {
    background-image: url(../img/tablet-map.png);
    background-repeat: no-repeat;
    background-position: right;
    min-height: 280px;
    position: relative;
    z-index: 1;
  }

  .white-bg-map h2 {
    font-size: 35px !important;
    font-weight: 600;
    line-height: 40px;
  }
}

@media (min-width: 1025px) {
  .white-bg-map {
    padding: 90px 0;
  }

  .map-bg {
    background-image: url(../img/map.png);
    background-position: 70%;
    min-height: 701px;
  }

  .white-bg-map h2 {
    font-size: 45px !important;
    line-height: 56px;
    margin-top: 190px;
  }

  .map-bg:after {
    display: none;
  }
}

/**
  * callout-contact
  */

.callout-contact {
  border-top: 1px solid #e0e0e0;
  min-height: 213px;
  padding: 50px 0;
  text-align: center;
  width: 100%;
}

.callout-contact h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .callout-contact {
    min-height: 204px;
  }

  .callout-contact h2 {
    font-size: 25px;
  }
}

@media (min-width: 1025px) {
  .callout-contact h2 {
    font-size: 30px;
  }
}
/**
  * Page
  */

.page-content {
  background-color: #fff;
  padding: 30px 0 50px 0;
}

.main-content h2,
.accordion-content-wrapper h2 {
  color: #333 !important;
  font-weight: 400;
}
.main-content .btn,
.main-content .btn-secondary,
.accordion-content-wrapper .btn,
.accordion-content-wrapper .btn-secondary {
  display: inline-block;
  margin-top: 20px;
}

.main-content .btn,
.accordion-content-wrapper .btn {
  margin-right: 15px;
}

.main-content img.alignright,
.wp-caption.alignright {
  float: none;
  margin-left: 0;
}

blockquote {
  margin: 30px 0 0 0;
  padding: 1px 10px;
  position: relative;
  display: block;
  font-style: italic;
}

blockquote:before {
  background-image: url(../img/triangle.png);
  content: '';
  display: block;
  height: 10px;
  left: 0;
  position: absolute;
  top: 0;
  width: 10px;
}

blockquote {
  color: #7c7c7c;
  font-weight: 300;
  font-size: 16px;
}

.widget_nav_menu {
  margin-top: 40px;
}

.widget_nav_menu .sub-menu-toggle.js-toggled:before {
  margin-left: 0;
}

.widget_nav_menu .nav-primary .sub-menu a:after {
  display: none;
}

.widget_nav_menu .current_page_parent > a,
.widget_nav_menu .current_page_item > a {
  color: #333 !important;
}

.widget_nav_menu ul {
  padding: 0;
}

.widget_nav_menu .nav-primary {
  display: inline-block;
  position: relative;
  top: 30px;
}

.widget_nav_menu li {
  /*border-top: 1px solid #eeeeee;*/
  display: block !important;
  list-style: none;
  padding: 0;
}

.widget_nav_menu a {
  color: #333;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding-left: 10px;
  width: 100%;
}

.widget_nav_menu a:hover {
  color: #333 !important;
}

.widget_nav_menu a:after {
  position: absolute;
  display: inline-block;
  right: 7px;
}

.widget_nav_menu .sub-menu {
  background-color: transparent;
  position: relative;
  margin-top: 10px !important;
}

.widget_nav_menu .sub-menu li {
  border-bottom: 0;
  padding: 0;
}

.widget_nav_menu .sub-menu li:last-child {
  padding-bottom: 0;
}

.widget_nav_menu .sub-menu a {
  color: #797979;
  font-weight: 400;
  padding-left: 30px;
}

.product-quantity {
  display: none;
}

.page-template-page-team .main-content h2,
.page-template-page-team .accordion-content-wrapper h2 {
  color: #333;
}

.widget_nav_menu .page-sidebar {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-content {
    padding: 70px 0 89px 0;
  }

  .main-content img.alignright,
  .wp-caption.alignright {
    float: right;
    margin-left: 30px;
  }

  blockquote {
    padding: 5px 126px 5px 20px;
  }

  .widget_nav_menu {
    margin-top: 60px;
  }

  .main-content h2 {
    margin-top: 20px;
  }

  .accordion-content-wrapper h2 {
    margin-top: 40px;
  }

  .accordion-content-wrapper h2:first-child {
    margin-top: 20px;
  }
}

@media (min-width: 1025px) {
  .page-content {
    padding: 57px 0 89px 0;
  }
  .main-content {
    margin-right: 100px;
  }

  .woocommerce-page .main-content {
    margin-right: 0;
  }

  blockquote {
    padding: 26px 87px 26px 24px;
  }

  .page-sidebar {
    padding-left: 40px;
  }

  .widget_nav_menu .nav-primary {
    left: 4%;
    width: 90%;
    top: 0;
    border-top: 0;
    padding-top: 0;
    margin-top: 30px;
  }

  .widget_nav_menu {
    margin-top: 0;
  }

  .widget_nav_menu li {
    border-top: 1px solid #eeeeee;
    padding: 10px 0;
  }

  .widget_nav_menu .nav-primary .menu-item-has-children a:after {
    content: '\f100';
    font-family: 'flaticon';
    font-size: 7px;
    display: inline-block;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    font-weight: normal;
    margin-left: 7px;
    position: absolute;
    right: 3%;
  }

  .widget_nav_menu .nav-primary .menu-item-has-children .sub-menu a::after {
    display: none;
  }
}

/**
  * Contact Page
  */

.contact-page {
  padding-top: 40px;
  text-align: left;
}

.contact-page [type='submit'] {
  float: none;
  display: block;
  margin: 0 auto;
}

.contact-page label {
  margin-top: 0;
}

@media (min-width: 768px) {
  .contact-page {
    padding-top: 80px;
  }
}

/**
  * Team Page
  */

.team-banner {
  background-image: url(../img/team.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  margin-top: 0;
  width: 100%;
}

.text-section {
  background-color: #fff;
  padding: 40px 0 77px 0;
  text-align: center;
}

.text-section h2 {
  color: #333;
  font-weight: 400;
}

.team-section {
  background-color: #fafafa;
  padding: 97px 0 50px 0;
}

.team-section img {
  border-radius: 5px;
  border: 1px solid #e1e1e1;
  margin: 0 auto;
  min-height: 223px;
}

.team-section span {
  color: #0a7ab9;
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
  margin-top: 20px;
  display: block;
}

.team-section p {
  color: #333;
  font-weight: 400;
  text-align: center;
  font-size: 13px;
  display: none;
}

.team-section a {
  display: block;
  margin-bottom: 35px;
}

.team-section a:hover img {
  -webkit-box-shadow: -1px 3px 3px 2px rgba(210, 210, 210, 1);
          box-shadow: -1px 3px 3px 2px rgba(210, 210, 210, 1);
}

@media (min-width: 768px) {
  .team-banner {
    min-height: 430px;
  }

  .text-section {
    padding: 60px 0 77px 0;
  }
}

@media (min-width: 1025px) {
  .team-banner {
    min-height: 687px;
  }
}

/**
  * list-with-bg
  */

.list-with-bg {
  background-color: #fff;
  min-height: 533px;
}

.list-bg {
  background-image: url(../img/blue-man-mobile.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 300px;
  width: 100%;
}

.list-content {
  padding: 20px 0;
}

.list-content h3 {
  font-weight: 400;
}
.list-content span {
  font-weight: 600;
}
.list-content ul {
  padding-left: 20px;
}
.list-content li {
  margin-bottom: 20px;
}

.list-content a {
  display: inline-block;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .list-with-bg,
  .list-with-bg:before,
  .list-bg {
    min-height: 560px;
  }

  .list-bg {
    background-image: url(../img/blue-man.jpg);
  }

  .list-content {
    padding: 72px 0;
    position: relative;
    z-index: 2;
  }

  .list-wrap {
    margin: 0;
    padding: 0;
  }

  .list-with-bg {
    position: relative;
  }

  .list-with-bg:before {
    background-image: url(../img/opacity-tablet.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    content: '';
    display: block;
    position: absolute;
    width: 90%;
    z-index: 1;
  }
}

@media (min-width: 1025px) {
  .list-with-bg:before {
    display: none;
  }

  .list-bg {
    background-image: url(../img/blue-man-mobile.jpg);
  }
}

/**
  * Image - Button
  */

.image-button {
  background-color: #f9f9f9;
  padding: 50px 0 0 0;
}

.services-product-item {
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  margin-bottom: 30px;
  min-height: 222px;
  width: 100%;
  position: relative;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.services-product-title {
  background-color: #f9f9f9;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top: 10px solid #f48223;
  bottom: 0;
  color: #000;
  font-weight: 600;
  min-height: 75px;
  padding: 12px 0 0 0;
  position: absolute;
  width: 100%;
}

.services-product-title:before {
  background-image: url(../img/blue-line.png);
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 10px;
  right: 0;
  position: absolute;
  top: -9.8px;
  width: 60%;
}

.services-product-title p {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  float: left;
  margin: 0;
}

.services-product-title .serv-link {
  color: #f48223;
  float: right;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.services-product-title span:before {
  font-size: 13px;
  margin-left: 3px;
  position: relative;
  top: 2px;
}

.services-product-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 67%;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  background-color: #0072bd;
}

.services-product-item:hover .services-product-overlay {
  opacity: 0.4;
}
.services-product-item:hover .services-product-title:before {
  background-image: none;
}

@media (min-width: 768px) {
  .image-button {
    padding: 100px 0 50px 0;
  }
}

@media (min-width: 1025px) {
  .services-product-item {
    margin-bottom: 0;
    min-height: 300px;
  }

  .services-product-title p {
    float: left;
  }
  .services-product-title a {
    float: right;
  }

  .services-product-overlay {
    height: 75%;
  }
}

/**
  * Product
  */

.blue-callout {
  background-color: #0072bd;
  border-radius: 10px;
  color: #fff;
  padding: 16px 20px;
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}

.blue-callout p,
.blue-callout a {
  color: #fff;
}

.blue-callout p {
  font-weight: 400;
}

.blue-callout a {
  font-weight: 300;
  text-decoration: underline !important;
}

.our_products {
  padding-top: 30px;
}

.woocommerce ul.products li.product a img {
  border-radius: 5px;
  border: 1px solid #e7e7e7;
  margin: 0 auto;
  min-height: 162px;
}

.woocommerce ul.products li.product h2 {
  color: #333;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

.our_products a {
  display: block;
  margin-bottom: 20px;
}

.woocommerce mark {
  background: transparent;
  color: #333;
  display: none;
}

.woocommerce ul.products li.product a:hover img,
.best-selling__slider--item:hover img {
  -webkit-box-shadow: -1px 3px 3px 2px rgba(210, 210, 210, 1);
          box-shadow: -1px 3px 3px 2px rgba(210, 210, 210, 1);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.woocommerce ul.products li.product a:hover h2 {
  color: #0a7ab9;
}

.woocommerce-loop-product__title {
  line-height: 24px;
}

.woocommerce div.product div.images .flex-control-thumbs {
  margin-top: 15px;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  padding: 0 15px 0 0;
}
.woocommerce
  div.product
  div.images
  .flex-control-thumbs
  .slick-slide:nth-child(2)
  li {
  margin-left: 5px;
}
.woocommerce
  div.product
  div.images
  .flex-control-thumbs
  .slick-slide:nth-child(3)
  li {
  margin-left: 10px;
}
.woocommerce
  div.product
  div.images
  .flex-control-thumbs
  .slick-slide:nth-child(4)
  li {
  margin-left: 15px;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
  border: 1px solid #ddd;
}

.product-category h2 {
  line-height: 30px;
}

@media (min-width: 1025px) {
  .blue-callout {
    padding: 40px 50px;
  }

  .blue-callout p,
  .blue-callout a {
    font-size: 20px;
    line-height: 40px;
  }
}

/**
  * Product Item
  */

.product-section {
  background-color: #fff;
  padding: 65px 0;
}

.product__slider {
  margin-left: -38px;
}
.product--slider {
  margin-bottom: 20px;
}

.product--slider li {
  list-style: none;
}

.product__slider--item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #dddddd;
  width: 100%;
  height: 280px;
  position: relative;
}

.product__nav {
  display: none;
  padding-left: 0px;
}

.product__nav--item {
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
  margin-bottom: 0;
  width: 100%;
  height: 90px;
  position: relative;
  outline-style: none;
}

.woocommerce-product-gallery__image {
  border: 1px solid #dddddd;
}

.title {
  color: #333;
  font-weight: 400 !important;
  margin-top: 10px;
}

.sku_wrapper,
.sku {
  color: #8f8f8f;
  font-size: 16px;
  font-weight: 300;
  margin-top: 10px;
}

.price {
  color: #0072bd !important;
  display: none;
  font-weight: 600;
  margin-top: 10px !important;
}

.price span {
  font-size: 16px;
  font-weight: 600;
}

.summary .price {
  color: #0072bd !important;
  display: none;
  font-weight: 600;
  margin-top: 20px !important;
}

.summary .price span {
  font-size: 35px;
  font-weight: 600;
}

.product-info .btn-secondary {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 25px;
}

.related {
  padding-top: 60px;
  text-align: center;
}

.best-selling__slider {
  padding-top: 40px;
}

.best-selling__slider--item {
  display: inline-block;
  margin: 0 7px;
  padding-bottom: 30px;
}

.best-selling__slider--item img {
  border: 1px solid #c5c5c5;
  border-radius: 10px;
}

.best-selling__slider--item h5 {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0;
  text-transform: capitalize;
}

.best-selling__slider--item:hover h5 {
  color: #0072bd;
}

.woocommerce a.add-request-quote-button,
.yith_ywraq_add_item_browse_message a {
  background-color: #0072bd;
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  border-radius: 5px;
  color: #fff;
  line-height: 24px;
  text-transform: capitalize;
}

.add-request-quote-button:hover,
.yith_ywraq_add_item_browse_message:hover a {
  background-color: #4095ce;
  color: #fff;
}

.yith_ywraq_add_item_browse_message a {
  margin-top: 10px;
}

.yith_ywraq_add_item_response_message {
  margin-top: 35px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ff7212;
  font-size: 14px;
}

.product_meta {
  margin-top: 10px;
}

/* Request quote form */

.quote-form {
  padding: 0 0px 50px;
  text-align: left;
}

.quote-form .required {
  color: red;
  font-weight: 700;
  border: 0 !important;
  text-decoration: none;
}

.woocommerce form .form-row {
  width: 100%;
}

.select2-container--default .select2-selection--multiple {
  height: 48px;
}

.woocommerce .button.raq-send-request {
  background-color: #f2761f;
  border: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  float: right;
  margin-top: 30px;
  padding: 13px 30px;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.woocommerce .button.raq-send-request:hover {
  color: #fff;
  background-color: #f59857;
}

.woocommerce.ywraq-wrapper form#yith-ywraq-form {
  padding-top: 30px;
}

.woocommerce #content table.cart img,
.woocommerce table.cart img,
.woocommerce-page #content table.cart img,
.woocommerce-page table.cart img {
  border: 1px solid #ddd;
  height: 100px;
  width: 100px;
}

.woocommerce div.product .product_title {
  color: #333;
  font-weight: 400;
}

/* Additional Quote Info */

.additional_q_info {
  display: none;
}

#yith-ywraq-default-form .form-row label.radio {
  display: block !important;
  margin-right: 0 !important;
  margin-left: 18px !important;
  margin-top: -20px;
  line-height: 13px !important;
}

.image-gallery-wrapper #images-slider li img {
  width: 75px !important;
}

.image-gallery-wrapper .custom-product-image {
  height: 285px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #dddddd;
}

.image-gallery-wrapper .custom-product-image img {
}

.image-gallery-wrapper .product-image-thumb {
  display: inline-block;
  height: 150px;
  width: 150px;
  margin-right: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #dddddd;
}

@media (min-width: 600px) {
  .product__slider--item {
    height: 410px;
  }

  .image-gallery-wrapper #images-slider li img {
    width: 120px !important;
  }
}

@media (min-width: 768px) {
  .product__nav {
    display: block;
  }
  .product__nav--item {
    margin-bottom: 0;
    width: 115px;
    height: 123px;
    position: relative;
    outline-style: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #dddddd;
  }

  .product__nav .slick-track {
    margin-left: 0;
    margin-right: 0;
  }

  /* Request quote form */

  .woocommerce form .form-row-first {
    width: 33.33333333%;
  }

  .woocommerce form .form-row {
    padding-left: 18px;
    padding-right: 18px;
    margin: 0;
  }

  #Style_field,
  #Length_field,
  #Width_field,
  #Height_field,
  #Weight_Capacity_field,
  #Printing_field,
  #Usage_Frequency_field,
  #Quantity_field,
  #Label_field,
  #Label2_field,
  #Label3_field #Quantity_field,
  #Quantityb_field,
  #Quantityc_field,
  #Quantityd_field {
    width: 25%;
  }

  .test_field {
    width: 25% !important;
  }

  #Company_field,
  #Street_Address_field {
    width: 50%;
  }

  #Label3_field {
    margin-bottom: 35px;
  }

  .image-gallery-wrapper #images-slider li img {
    width: 160px !important;
  }

  .image-gallery-wrapper .custom-product-image {
    height: 500px;
  }
}

@media (min-width: 1025px) {
  .product--slider {
    margin-bottom: 0;
  }

  .product__slider--item {
    height: 499px;
  }

  .product__nav--item {
    height: 115px;
    margin-bottom: 16px;
  }

  .product-info {
    padding-left: 113px;
  }

  .quote-form {
    padding: 30px 50px 62px;
  }

  .quote-form h3 {
    padding-left: 17px;
  }

  .image-gallery-wrapper #images-slider li img {
    width: 90px !important;
  }

  .tax-product_cat .masthead-inner {
    padding: 30px 0;
  }
}

@media (min-width: 1200px) {
  .image-gallery-wrapper #images-slider li img {
    width: 105px !important;
  }
}

@media (min-width: 1300px) {
  .image-gallery-wrapper #images-slider li img {
    width: 115px !important;
  }
}

/**
  * Accordion
  */

.accordion-section {
  background-color: #fff;
  padding-bottom: 70px;
}

.accordion {
  border-bottom: 1px solid #dddddd;
  margin: 0;
  padding-top: 70px;
}

.accordion-holder {
  position: relative;
}

.accordion-title {
  cursor: pointer;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #dddddd;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 10px 5px;
  position: relative;
  z-index: 1;
}

.accordion-title:hover {
  color: #999;
}

.accordion-title:after {
  content: '\f106';
  color: #0071c2;
  font-family: 'Flaticon';
  font-size: 14px;
  float: right;
  position: absolute;
  right: 10px;
  top: 15px;
  z-index: 2;
}

.accordion-title.active:after {
  content: '\f105';
  font-family: 'Flaticon';
}

.accordion-content {
  padding: 10px 20px;
  position: relative;
  top: 0;
  margin: 0 auto;
}

.accordion-content p {
  margin: 0;
  margin-top: 20px;
}

.accordion-content tr {
  border-bottom: 1px solid #dddddd;
}

.accordion-content tr:last-child {
  border-bottom: 0;
}

.accordion-content th {
  padding: 12px 20px !important;
  /*background-color: #f3f3f3;*/
  width: 20%;
}

.accordion-content td {
  padding: 0 10px !important;
}

@media (min-width: 600px) {
  .accordion-title {
    padding: 10px 20px;
  }
}

@media (min-width: 768px) {
  .accordion-title:after {
    top: 18px;
  }
}

@media (min-width: 1025px) {
  .accordion-content {
    padding: 0 0 0 240px;
    position: relative;
    top: -30px;
    width: 85%;
    margin: 0 auto;
    z-index: 77;
  }

  .accordion-title:after {
    top: 10px;
    right: 25px;
    font-size: 18px;
  }
}

/**
  * Request Qoute
  */

.quote-section {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.quote-info {
  padding: 0 0 5px 0;
}

.quote-info h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

.quote-info i:before {
  font-size: 12px;
  margin-left: 0;
  background-color: #ff7212;
  border-radius: 3px;
  color: #fff;
  margin-right: 9px;
  padding: 3px;
}

.quote-info a {
  color: #454545;
  font-size: 16px;
  font-weight: 300;
}

.quote-info a:hover {
  color: #0072bd;
}

.quote-info p {
  margin: 5px 0;
}

.quote-form {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 40px;
  -webkit-box-shadow: 0px 6px 6px 0px rgba(190, 190, 190, 1);
          box-shadow: 0px 6px 6px 0px rgba(190, 190, 190, 1);
  padding: 0 10px 50px 10px;
}

.quote-form .add-project {
  color: #454545;
  font-size: 15px;
  font-weight: 300;
  text-transform: none;
}

.quote-form span {
  font-weight: 300;
  font-size: 14px;
}

.quote-text h1 {
  color: #333;
  font-weight: 400;
}

.quote-form .selectric .button {
  background-color: transparent;
  height: 48px;
}

.add-project {
  border-bottom: 1px solid #c5c5c5;
  border-top: 1px solid #c5c5c5;
  margin-top: 35px !important;
  margin-left: 3px !important;
  padding: 10px 0 !important;
  width: 97% !important;
}

.add-project p {
  margin: 0;
}

.add-project i:before {
  color: #0072bd;
  cursor: pointer;
  font-size: 12px;
  margin-left: 5px;
}

.add-project i.active:before {
  content: '\f105';
  font-family: 'flaticon';
}

.add-content {
  display: none;
}

.additional-note {
  background-color: #eee;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 300;
  padding: 15px 30px !important;
  margin-left: 3px !important;
  width: 97% !important;
  text-transform: none;
}

.additional-note a {
  color: #f2761f;
}

.additional-note a:hover {
  color: #f59857;
}

.additional-note {
  margin-top: 30px !important;
  float: left;
}

.title-qty {
  font-size: 15px;
  margin-top: 21px !important;
  float: left;
  margin-bottom: -25px !important;
}

@media (min-width: 768px) {
  .quote-section {
    padding: 67px 0;
  }
  .quote-form {
    padding: 30px 40px 62px 40px;
  }

  .add-project {
    margin-left: 18px !important;
    width: 94% !important;
  }

  .additional-note {
    margin-left: 18px !important;
    width: 96% !important;
  }
}

@media (min-width: 1025px) {
  .quote-info {
    border-left: 1px solid #c5c5c5;
    padding: 0 0 5px 30px;
  }

  .quote-form {
    padding: 30px 78px 62px 78px;
  }
}

/**
  *
  */

.blog-main article {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #0072bd;
}

.post .widget_nav_menu h3 {
  background-color: #0072bd;
  color: #fff;
  padding: 7px 0 7px 20px;
}

.post .widget_nav_menu li {
  border-top: 0;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.post .widget {
  margin-bottom: 30px;
}

.post .widget_nav_menu a:hover {
  color: #0072bd !important;
}

#wp-realtime-sitemap-pages h3 {
  display: none;
}

@media (min-width: 1025px) {
  .post .widget_nav_menu h3 {
    padding: 0 0 0 20px;
  }
}

/**
  * Page-footer
  */

.page-footer {
  position: relative;
  background-color: #fff;
  border-top: 10px solid #f48222;
  min-height: 352px;
  padding-top: 52px;
  text-align: center;
  width: 100%;
}

.page-footer:after {
  content: '';
  display: block;
  background-image: url(../img/blue-line.png);
  background-repeat: no-repeat;
  height: 10px;
  position: absolute;
  top: -9.8px;
  width: 70%;
  right: 0;
}

.page-footer img {
  margin: 0 auto;
}

.nav-info {
  padding: 0;
}

.nav-info li {
  list-style: none;
  display: inline-block;
}

.nav-info p {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  text-transform: capitalize;
}

.nav-info span {
  display: none;
}

.nav-info a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.social {
  text-align: center;
}

.social a,
.article-social a {
  color: #f2761e;
  font-size: 30px;
  margin: 0 5px;
}

.article-social a {
  margin: 0px;
  position: relative;
  top: 6px;
}

.footer-bottom {
  border-top: 1px solid #dddddd;
  margin-top: 50px;
  text-align: center;
}

.footer-bottom ul {
  padding: 0;
}

.footer-bottom li {
  list-style: none;
  display: inline-block;
}

.footer-bottom a,
.footer-bottom li {
  color: #333333;
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
}

.footer-bottom a:after {
  content: ' | ';
  color: #656565;
  font-weight: 700;
  float: right;
  margin: 0 5px;
  position: relative;
}

.footer-bottom a:hover {
  color: #468ebd;
}

@media (min-width: 768px) {
  .page-footer {
    min-height: 320px;
    padding-top: 20px;
  }
  .footer-bottom {
    margin-top: 30px;
  }

  .nav-info span {
    display: inline-block;
    font-weight: 700;
    margin: 0 5px;
    position: relative;
  }

  .nav-info p,
  .nav-info a {
    font-size: 16px;
  }
}

@media (min-width: 1025px) {
  .page-footer::after {
    height: 9.5px;
    top: -9.5px;
  }
}

@media (min-width: 1980px) {
  .page-footer {
    min-height: 315px;
  }
  .page-footer:after {
    background-position: right;
    height: 9.7px;
    top: -9.6px;
    width: 100%;
  }
}

/** Packaging Categories Styles **/

.new-products-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-align: center;
          -ms-flex-align: center;
      align-items: center;
  margin-bottom: 40px;
}

.new-products-container .line {
  background-color: orange;
  height: 6px;
  width: 20%;
}

h2.new-products-title {
  text-align: center;
  width: 60%;
  text-transform: uppercase;
  font-size: 26px;
}

@media (min-width: 768px) {
  h2.new-products-title {
    font-size: 36px;
    width: 70%;
  }
  .new-products-container .line {
    width: 15%;
    height: 8px;
  }
}

@media (min-width: 1025px) {
  h2.new-products-title {
    font-size: 42px;
    width: 50%;
  }
  .new-products-container .line {
    width: 25%;
  }
}

ul.products.columns-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product img {
  max-height: 175px;
}

.woocommerce ul.products li.product a img {
  width: auto;
}

.woocommerce ul.products li.product h2 {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 768px) {
  .woocommerce ul.products[class*='columns-'] li.product,
  .woocommerce-page ul.products[class*='columns-'] li.product {
    width: 46%;
    float: left;
    clear: both;
    margin: 0 1.5% 2.992em;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products[class*='columns-'] li.product,
  .woocommerce-page ul.products[class*='columns-'] li.product {
    width: 97%;
  }
}

ul.product-cat-submenu {
  visibility: hidden;
  overflow: hidden;
  margin-top: 7px;
  height: 0;
}

li:hover ul.product-cat-submenu {
  visibility: visible;
  height: auto;
}

.page-header .slider-products.js-hover li,
.page-header .slider-products.sp-hover li,
.page-header .slider-products.js-hover a,
.page-header .slider-products.sp-hover a {
  width: auto !important;
}

/**
  * Back to Top
  */

.back-to-top {
  position: fixed;
  bottom: 2%;
  right: -3px;
  z-index: 555;
  cursor: pointer;
}

/**
  * Print CSS
  */

@media print {
  /* Reset*/
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    text-shadow: none !important;
  }

  h2,
  h3 {
    /* Avoid a paragraph being detached from the heading immediately preceding it */
    page-break-after: avoid;
  }

  figure,
  table {
    /* Avoid breaking figure or table into 2 pages */
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
    page-break-inside: avoid;
  }

  p {
    /* Prevent single line at the end of a page and a single line at the top the next page */
    orphans: 2;
    widows: 2;
  }

  a[href]:after {
    /* Show URLs after links */
    content: ' (' attr(href) ')';
  }

  /* Grid Styling */

  .container {
    width: auto;
  }

  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666666666666%;
  }
  .col-sm-10 {
    width: 83.33333333333334%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666666666666%;
  }
  .col-sm-7 {
    width: 58.333333333333336%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666666666667%;
  }
  .col-sm-4 {
    width: 33.33333333333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.666666666666664%;
  }
  .col-sm-1 {
    width: 8.333333333333332%;
  }

  /* Slick Slider - remove if not using slick slider */

  .slick-slider .slick-arrow,
  .slick-slider .slick-dots {
    display: none !important; /* we usually don't need to show slider navigation for print */
  }

  /* For sliders you want to display full width for print.
        Update ".slick-slider" with your specific slider names. */
  .slick-slider,
  .slick-sliderg .slick-list,
  .slick-slider .slick-track,
  .slick-slider .slick-slide {
    width: 100% !important;
    height: auto !important;
  }

  /* For sliders where you only want to show the 1st image of that slider.
        Update ".slick-slider" with your specific slider names. */
  .slick-slider .slick-slide {
    display: none !important;
  }
  .slick-slider .slick-slide.slick-active {
    display: block !important;
  }

  /* Show Only Active Thumbnails */
  .slick-slider .slick-cloned {
    display: none;
  }

  /* Reset adaptiveHeight */
  .slick-list {
    height: auto !important;
  }

  /* Remove Scrollbars */
  .slick-track {
    width: auto !important;
    height: auto !important;
    -webkit-transform: none !important;
            -ms-transform: none !important;
        transform: none !important;
  }

  .slick-track.slick-slide {
    width: auto !important;
  }
}

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

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

/**
  * Images
  */

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

/**
  * 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,
.hidden-xxs-up {
  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) {
  .hidden-xs-up {
    display: none !important;
  }
}

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

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

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

@media (min-width: 768px) and (max-width: 1024px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (max-width: 1024px) {
    .slick-next{
        right: 0;
    }
    .slick-prev{
        left: 0;
    }
    .slick-next,.slick-prev{
        border: none!important;
        height: 100%!important;
        background-color: #ffffffba!important;
    }
  .hidden-sm-down {
    display: none !important;
  }
}

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

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

@media (max-width: 1199px) {
  .hidden-md-down {
    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;
  }
}

/**
  * Text alignment
  */

.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !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;
}

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

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

@media (min-width: 600px) {
  .flush-xs {
    margin: 0 !important;
  }
  .flush-xs-top {
    margin-top: 0 !important;
  }
  .flush-xs-right {
    margin-right: 0 !important;
  }
  .flush-xs-bottom {
    margin-bottom: 0 !important;
  }
  .flush-xs-left {
    margin-left: 0 !important;
  }
  .flush-xs-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .flush-xs-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

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

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

  .push-double-xs {
    margin: 40px !important;
  }
  .push-double-xs-top {
    margin-top: 40px !important;
  }
  .push-double-xs-right {
    margin-right: 40px !important;
  }
  .push-double-xs-bottom {
    margin-bottom: 40px !important;
  }
  .push-double-xs-left {
    margin-left: 40px !important;
  }
  .push-double-xs-ends {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .push-double-xs-sides {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .push-triple-xs {
    margin: 60px !important;
  }
  .push-triple-xs-top {
    margin-top: 60px !important;
  }
  .push-triple-xs-right {
    margin-right: 60px !important;
  }
  .push-triple-xs-bottom {
    margin-bottom: 60px !important;
  }
  .push-triple-xs-left {
    margin-left: 60px !important;
  }
  .push-triple-xs-ends {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .push-triple-xs-sides {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

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

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

  .soft-double-xs {
    padding: 40px !important;
  }
  .soft-double-xs-top {
    padding-top: 40px !important;
  }
  .soft-double-xs-right {
    padding-right: 40px !important;
  }
  .soft-double-xs-bottom {
    padding-bottom: 40px !important;
  }
  .soft-double-xs-left {
    padding-left: 40px !important;
  }
  .soft-double-xs-ends {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .soft-double-xs-sides {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .soft-triple-xs {
    padding: 60px !important;
  }
  .soft-triple-xs-top {
    padding-top: 60px !important;
  }
  .soft-triple-xs-right {
    padding-right: 60px !important;
  }
  .soft-triple-xs-bottom {
    padding-bottom: 60px !important;
  }
  .soft-triple-xs-left {
    padding-left: 60px !important;
  }
  .soft-triple-xs-ends {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .soft-triple-xs-sides {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }

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

@media (min-width: 768px) {
  .flush-sm {
    margin: 0 !important;
  }
  .flush-sm-top {
    margin-top: 0 !important;
  }
  .flush-sm-right {
    margin-right: 0 !important;
  }
  .flush-sm-bottom {
    margin-bottom: 0 !important;
  }
  .flush-sm-left {
    margin-left: 0 !important;
  }
  .flush-sm-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .flush-sm-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

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

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

  .push-double-sm {
    margin: 40px !important;
  }
  .push-double-sm-top {
    margin-top: 40px !important;
  }
  .push-double-sm-right {
    margin-right: 40px !important;
  }
  .push-double-sm-bottom {
    margin-bottom: 40px !important;
  }
  .push-double-sm-left {
    margin-left: 40px !important;
  }
  .push-double-sm-ends {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .push-double-sm-sides {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .push-triple-sm {
    margin: 60px !important;
  }
  .push-triple-sm-top {
    margin-top: 60px !important;
  }
  .push-triple-sm-right {
    margin-right: 60px !important;
  }
  .push-triple-sm-bottom {
    margin-bottom: 60px !important;
  }
  .push-triple-sm-left {
    margin-left: 60px !important;
  }
  .push-triple-sm-ends {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .push-triple-sm-sides {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

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

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

  .soft-double-sm {
    padding: 40px !important;
  }
  .soft-double-sm-top {
    padding-top: 40px !important;
  }
  .soft-double-sm-right {
    padding-right: 40px !important;
  }
  .soft-double-sm-bottom {
    padding-bottom: 40px !important;
  }
  .soft-double-sm-left {
    padding-left: 40px !important;
  }
  .soft-double-sm-ends {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .soft-double-sm-sides {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .soft-triple-sm {
    padding: 60px !important;
  }
  .soft-triple-sm-top {
    padding-top: 60px !important;
  }
  .soft-triple-sm-right {
    padding-right: 60px !important;
  }
  .soft-triple-sm-bottom {
    padding-bottom: 60px !important;
  }
  .soft-triple-sm-left {
    padding-left: 60px !important;
  }
  .soft-triple-sm-ends {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .soft-triple-sm-sides {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }

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

@media (min-width: 1025px) {
  .flush-md {
    margin: 0 !important;
  }
  .flush-md-top {
    margin-top: 0 !important;
  }
  .flush-md-right {
    margin-right: 0 !important;
  }
  .flush-md-bottom {
    margin-bottom: 0 !important;
  }
  .flush-md-left {
    margin-left: 0 !important;
  }
  .flush-md-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .flush-md-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

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

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

  .push-double-md {
    margin: 40px !important;
  }
  .push-double-md-top {
    margin-top: 40px !important;
  }
  .push-double-md-right {
    margin-right: 40px !important;
  }
  .push-double-md-bottom {
    margin-bottom: 40px !important;
  }
  .push-double-md-left {
    margin-left: 40px !important;
  }
  .push-double-md-ends {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .push-double-md-sides {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .push-triple-md {
    margin: 60px !important;
  }
  .push-triple-md-top {
    margin-top: 60px !important;
  }
  .push-triple-md-right {
    margin-right: 60px !important;
  }
  .push-triple-md-bottom {
    margin-bottom: 60px !important;
  }
  .push-triple-md-left {
    margin-left: 60px !important;
  }
  .push-triple-md-ends {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .push-triple-md-sides {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

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

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

  .soft-double-md {
    padding: 40px !important;
  }
  .soft-double-md-top {
    padding-top: 40px !important;
  }
  .soft-double-md-right {
    padding-right: 40px !important;
  }
  .soft-double-md-bottom {
    padding-bottom: 40px !important;
  }
  .soft-double-md-left {
    padding-left: 40px !important;
  }
  .soft-double-md-ends {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .soft-double-md-sides {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .soft-triple-md {
    padding: 60px !important;
  }
  .soft-triple-md-top {
    padding-top: 60px !important;
  }
  .soft-triple-md-right {
    padding-right: 60px !important;
  }
  .soft-triple-md-bottom {
    padding-bottom: 60px !important;
  }
  .soft-triple-md-left {
    padding-left: 60px !important;
  }
  .soft-triple-md-ends {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .soft-triple-md-sides {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }

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

@media (min-width: 1200px) {
  .flush-lg {
    margin: 0 !important;
  }
  .flush-lg-top {
    margin-top: 0 !important;
  }
  .flush-lg-right {
    margin-right: 0 !important;
  }
  .flush-lg-bottom {
    margin-bottom: 0 !important;
  }
  .flush-lg-left {
    margin-left: 0 !important;
  }
  .flush-lg-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .flush-lg-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

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

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

  .push-double-lg {
    margin: 40px !important;
  }
  .push-double-lg-top {
    margin-top: 40px !important;
  }
  .push-double-lg-right {
    margin-right: 40px !important;
  }
  .push-double-lg-bottom {
    margin-bottom: 40px !important;
  }
  .push-double-lg-left {
    margin-left: 40px !important;
  }
  .push-double-lg-ends {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .push-double-lg-sides {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .push-triple-lg {
    margin: 60px !important;
  }
  .push-triple-lg-top {
    margin-top: 60px !important;
  }
  .push-triple-lg-right {
    margin-right: 60px !important;
  }
  .push-triple-lg-bottom {
    margin-bottom: 60px !important;
  }
  .push-triple-lg-left {
    margin-left: 60px !important;
  }
  .push-triple-lg-ends {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .push-triple-lg-sides {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

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

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

  .soft-double-lg {
    padding: 40px !important;
  }
  .soft-double-lg-top {
    padding-top: 40px !important;
  }
  .soft-double-lg-right {
    padding-right: 40px !important;
  }
  .soft-double-lg-bottom {
    padding-bottom: 40px !important;
  }
  .soft-double-lg-left {
    padding-left: 40px !important;
  }
  .soft-double-lg-ends {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .soft-double-lg-sides {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .soft-triple-lg {
    padding: 60px !important;
  }
  .soft-triple-lg-top {
    padding-top: 60px !important;
  }
  .soft-triple-lg-right {
    padding-right: 60px !important;
  }
  .soft-triple-lg-bottom {
    padding-bottom: 60px !important;
  }
  .soft-triple-lg-left {
    padding-left: 60px !important;
  }
  .soft-triple-lg-ends {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .soft-triple-lg-sides {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }

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

.single-product .posted_in,
.single-product .quantity {
  display: none;
}

.single-product .price,
.single-product .sku {
  display: inline-block;
  margin: 0;
}

/*.image-gallery-wrapper #main-image {
     max-height: 350px;
     overflow-y: hidden;
 }*/

.image-gallery-wrapper #images-slider li a {
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
}

#products-blocks-wrapper ul li {
  width: 100%;
}

#products-blocks-wrapper h2 {
  color: #333;
  font-weight: 400;
  font-size: 35px;
  line-height: 44.86px;
  text-transform: capitalize;
  text-align: left;
  padding: 0;
}

#images-slider {
  padding-left: 0;
}

#images-slider .slick-prev:before,
#images-slider .slick-next:before {
  color: #f2761f;
  display: block;
  font-family: 'icomoon';
  font-size: 40px;
}

#images-slider .slick-prev:before {
  content: '\e901';
  margin-left: -10px;
}

#images-slider .slick-next:before {
  content: '\e900';
  margin-right: 10px;
}

#images-slider .slick-prev,
#images-slider .slick-next {
  background-color: #fff;
  height: 90px;
  width: 30px;
  z-index: 3;
}

#images-slider .slick-prev {
  border-right: 1px solid #c5c5c5;
}
#images-slider .slick-next {
  border-left: 1px solid #c5c5c5;
}

#images-slider .slick-prev.slick-disabled,
#images-slider .slick-next.slick-disabled,
#images-slider .slick-prev.slick-disabled:before,
#images-slider .slick-next.slick-disabled:before {
  border: 0;
  color: transparent;
}

.woocommerce-breadcrumb {
  display: none;
}

.image-gallery-wrapper img,
.images-slider img {
  border: 1px solid #ddd;
  height: auto;
  max-width: 100%;
  width: 100%;
  margin-bottom: 5px;
}

.children {
  margin-top: 0;
}

.custom-product-image-thumb {
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  display: block;
}

.cart-btn {
  float: right;
  margin: 0 0 0 15px;
}

.post-56 .ywraq_list_empty_message,
.post-56 .return-to-shop,
.post-547 .rq_form,
.post-547 .yith-ywraq-mail-form-wrapper,
td.actions,
.return-to-shop,
.product-subtotal {
  display: none;
}

.yith-ywraq-mail-form-wrapper .g-recaptcha {
  text-align: center;
}
.yith-ywraq-mail-form-wrapper .g-recaptcha > div {
  margin: 10px auto 25px;
}

.quote-empty {
  margin-left: 0 !important;
  width: 100% !important;
}

.wpcf7-list-item {
  display: block;
}

ul.product-item.slick-initialized.slick-slider {
    background: #fff;
    width: 100%;
}

.slider-products .container {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}
