/* BREAKPOINTS */
/* widths/heights/dimension */
/* COLOURS */
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
/* FORMS */
/* The clearfix mixin is necessary for the floats */
/* CSS3 */
/* FONTS */
.resource-library h2, .resource-library h3, .resource-library h4, .resource-library h5, .resource-library h6 {
  margin-bottom: 0;
}
@media only screen and (min-width: 75em) {
  .resource-library h2, .resource-library h3, .resource-library h4, .resource-library h5, .resource-library h6 {
    margin-bottom: 48px;
  }
}

.resources-list {
  margin-bottom: 30px !important;
}
.resources-list.list-arrow {
  margin-bottom: 30px;
}
.resources-list.list-arrow a {
  font-size: 16px;
  text-decoration: none;
}
.resources-list.list-arrow li {
  float: left;
  padding: 20px 0 20px 1em;
}
.resources-list.list-arrow li:before {
  top: 25px;
}
@media only screen and (min-width: 75em) {
  .resources-list.list-arrow li {
    width: 40%;
    margin: 0 5%;
    border-top: 2px solid #F3F3F3;
  }
}
.resources-list.list-arrow h3, .resources-list.list-arrow h4 {
  margin-bottom: 0;
  color: #ff7835;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}
@media only screen and (min-width: 75em) {
  .resources-list.list-arrow h3, .resources-list.list-arrow h4 {
    height: 40px;
    overflow: hidden;
    margin-bottom: 1em;
  }
}
.resources-list .resources-info span {
  padding: 0 0.5em;
  font-size: 11px;
  border-right: 1px solid #EAEAEA;
}
.resources-list .resources-info span:first-child {
  display: none;
  padding-left: 0;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
}
@media only screen and (min-width: 48em) {
  .resources-list .resources-info span:first-child {
    display: inline;
  }
}
.resources-list .resources-info span:last-child {
  border-right: none;
}
