/**
 * Nicolas Gallagher's micro clearfix hack without IE6/7 support
 * http://nicolasgallagher.com/micro-clearfix-hack/
 */
/**
 * Formats a list to have no bullets, padding or margin.
 * It uses `> li` to not affect any lists nested inside this list.
 */
/**
 * Mixin for absolute, fixed or relative positioning.
 *
 * Examples:
 *
 *     // this will position the item absolute with top: 0; and left: 0;
 *     .item1 { @include position; }
 *     
 *     // this will position the item absolute with bottom: 50px; and right: 50px;
 *     .item2 { @include position(50px, "BR"); }
 *     
 *     // this will position the item fixed with top: 10px; and right: 40px;
 *     .item3 { @include position(10px 40px, "TR", fixed); }
 * 
 * @param {Array} [$coordinates=0] Sets the coordinates.
 * @param {String} [$align="TL"] Sets the alignment of the positioning.
 * Possible values:
 * 
 *   - "TL": top left
 *   - "TR": top right
 *   - "BL": bottom left
 *   - "BR": bottom right
 *   
 * @param {String} [$position=absolute] Sets the css attribute `position`
 */
.hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}

/**
 * Usage:
 *
 *   background-color: color(white);
 */
/**
 * Usage:
 *
 *   background-color: color('white');
 */
/**
 * Creates placeholder selectors for each color setting the background color
 * Example would be `%bg-white` which you could use like `@extend %bg-white`
 */
/* BREAKPOINTS CONFIG */
.packages__detail h1 {
  margin: 0 0 20px 0;
}

.packages__detail .packages__detail--description {
  float: left;
}

.packages__detail .packages__detail--primaryImage-img {
  float: left;
  width: 100%;
}

.packages__detail .packages__detail--restrictions {
  float: left;
  margin: 20px 0 0 0;
  border-top: 1px solid #c1c1c1;
}
/*# sourceMappingURL=styles.css.map */