/* -------------------------------------------------------------
  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-horizontal   - 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 Right: 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              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-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 */
/* VERTICAL 2 COLORS at percent */
/* BACKGROUND COVER */
/* BACKGROUND GRADIENT */
/* BACKGROUND HORIZONTAL */
/* 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 */
/* PLACEHOLDER */
/*
.foo {
  @include placeholder {
    color: green;
  }
}
*/
.desplegable {
  position: relative; }
  .desplegable .desplegable-btn {
    text-decoration: none; }
    .desplegable .desplegable-btn:before {
      content: "\f2fb";
      font-family: "Material-Design-Iconic-Font";
      display: inline-block;
      width: auto;
      font-size: 1.2em;
      position: absolute;
      top: -0.1em;
      left: -0.9em; }
    .desplegable .desplegable-btn.open:before {
      content: "\f2f9"; }
  .desplegable .desplegable-contenido {
    overflow: hidden; }

.subContent {
  margin-top: 15px; }

.filter-search-container {
  margin-bottom: 30px; }

.sr-container, .sr-slides {
  position: relative; }

.sr-container {
  overflow: hidden; }
  .sr-container .sr-container {
    width: 100%;
    overflow: hidden; }
  .sr-container .sr-slide {
    position: absolute;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Chrome/Safari/Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    user-select: none; }
    .sr-container .sr-slide img {
      -moz-user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-user-drag: none;
      user-drag: none;
      -webkit-touch-callout: none; }

.sr-navPuntosContainer {
  position: relative;
  padding: 8px 0;
  text-align: center; }
  .sr-navPuntosContainer .sr-navPuntos {
    font-family: Material-Design-Iconic-Font;
    display: inline-block;
    font-size: 20px;
    margin: 0px 0.2em;
    width: 1.2em;
    height: 1.2em;
    color: #e84c14; }
    .sr-navPuntosContainer .sr-navPuntos:before {
      content: "\f26c"; }
    .sr-navPuntosContainer .sr-navPuntos.sr-active, .sr-navPuntosContainer .sr-navPuntos:hover, .sr-navPuntosContainer .sr-navPuntos:focus {
      text-decoration: none;
      color: #ec5520; }
      .sr-navPuntosContainer .sr-navPuntos.sr-active:before, .sr-navPuntosContainer .sr-navPuntos:hover:before, .sr-navPuntosContainer .sr-navPuntos:focus:before {
        content: "\f26d"; }
    @media (max-width: 879px) {
      .sr-navPuntosContainer .sr-navPuntos {
        font-size: 25px;
        width: 1.2em;
        height: 1.2em; } }

.sr-navArrowsContainer-right {
  position: absolute;
  top: 0px;
  right: 2px;
  height: 100%;
  display: table; }

.sr-navArrowsContainer-left {
  position: absolute;
  top: 0px;
  left: 2px;
  height: 100%;
  display: table; }

@media (max-width: 959px) {
  .sr-navArrowsContainer-right {
    right: 8px; }

  .sr-navArrowsContainer-left {
    left: 8px; } }
.sr-arrow {
  display: table-cell;
  text-align: center;
  vertical-align: middle; }

.sr-arrowRight {
  font-family: Material-Design-Iconic-Font;
  font-size: 50px;
  color: #e84c14;
  text-shadow: 0px 0px 2px #fff;
  filter: alpha(opacity=60);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  -webkit-opacity: 0.6;
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  -ms-opacity: 0.6;
  -o-opacity: 0.6;
  opacity: 0.6; }
  .sr-arrowRight:before {
    content: "\f2fb"; }
  .sr-arrowRight:hover, .sr-arrowRight:focus {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    text-decoration: none;
    color: #e84c14; }

.sr-arrowLeft {
  font-family: Material-Design-Iconic-Font;
  color: #e84c14;
  font-size: 50px;
  text-shadow: 0px 0px 2px #fff;
  filter: alpha(opacity=60);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  -webkit-opacity: 0.6;
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  -ms-opacity: 0.6;
  -o-opacity: 0.6;
  opacity: 0.6; }
  .sr-arrowLeft:before {
    content: "\f2fa"; }
  .sr-arrowLeft:hover, .sr-arrowLeft:focus {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    text-decoration: none;
    color: #e84c14; }

/*# sourceMappingURL=componentes.css.map */
