/* line 89, ../sass/_custom.scss */
.chevron::before {
  border-style: solid;
  border-width: 0.5em 0.5em 0 0;
  content: '';
  display: inline-block;
  height: 1em;
  left: 0.15em;
  position: relative;
  top: 0.15em;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 1em;
}

/* line 103, ../sass/_custom.scss */
.chevron.right:before {
  left: 0;
  transform: rotate(45deg);
}

/* line 108, ../sass/_custom.scss */
.chevron.bottom:before {
  top: 0;
  transform: rotate(135deg);
}

/* line 113, ../sass/_custom.scss */
.chevron.left:before {
  left: 0.25em;
  transform: rotate(-135deg);
}

/* line 120, ../sass/_custom.scss */
.arrow-down {
  float: right;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid white;
  transition: all 0.6s;
}
/* line 131, ../sass/_custom.scss */
.arrow-down.open {
  transform: rotate(180deg);
}

/* line 139, ../sass/_custom.scss */
.columnwidth {
  width: 100%;
}
@media only screen and (min-width: 1025px) {
  /* line 139, ../sass/_custom.scss */
  .columnwidth {
    width: 1024px;
  }
}
@media only screen and (min-width: 1281px) {
  /* line 139, ../sass/_custom.scss */
  .columnwidth {
    width: 1024px;
  }
}
@media only screen and (max-width: 1024px) {
  /* line 139, ../sass/_custom.scss */
  .columnwidth {
    width: 96%;
  }
}

/* line 155, ../sass/_custom.scss */
.headers {
  font-family: "Poppins", sans-serif;
}

/* line 158, ../sass/_custom.scss */
.chevronlist li {
  list-style: none;
  padding-left: 0em;
  margin-bottom: 1.5em;
}
/* line 163, ../sass/_custom.scss */
.chevronlist li:before {
  content: "\f054";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-left: -1em;
  width: 1em;
  font-size: 2em;
}

/*
 * responsive.custom.css is for custom media queries that are not set via the
 * theme settings, such as cascading media queries.
 *
 * By default all the other responsive stylesheets used in Adaptivetheme use a
 * "stacking method", however cascading media queries use a waterfall method so
 * you can leverage the cascade and inheritance for all browsers that support
 * media queries, regardless of screen size.
 *
 * @SEE http://zomigi.com/blog/essential-considerations-for-crafting-quality-media-queries/#mq-overlap-stack
 *
 * NOTE: this file loads by default, to disable got to your theme settings and
 * look under the "CSS" settings tab.
 */
/*
 * Really small screens and up
 */
/* @media only screen and (min-width: 220px) {} */
/*
 * Smalltouch sizes and up
 */
/* @media only screen and (min-width: 320px) {} */
/*
 * Smalltouch sizes and down
 */
@media only screen and (max-width: 480px) {
  /* 
   * Float Region Blocks - custom media query CSS example:
   * 
   * Float regions blocks is an Extension you can enable in the appearance
   * settings for your theme. This feature allows you to automatically float
   * blocks in regions, you can switch it on and off depending on your
   * requirements. For design purposes you many want to remove the floats for
   * devices where the entire theme is just one column - for example small
   * mobile phones. The following CSS is inside the custom media query:
   *
   *   @media only screen and (max-width: 480px){}
   *
   * This will target devices with a maximum width of 480px - most small phones.
   * In these smaller screen sizes we can remove the float and widths so all
   * blocks stack instead of displaying horizonally. The selector used is an
   * "attribute selector" which will match on any float block class. Use your
   * inspector or Firebug to get the classes from the page output if you need
   * more granular control over block alignment and stacking.
   */
  /* line 57, ../sass/responsive.custom.scss */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
}
/*
 * Tablet sizes and up
 */
/* @media only screen and (min-width: 768px) {} */
/*
 * Desktops/laptops and up
 */
/* @media only screen and (min-width: 1025px) {} */
