@import url(libraries/normalize/normalize.css);
.d-none {
  display: none; }
  .d-none--important {
    display: none !important; }
  @media (min-width: 0) and (max-width: 767px) {
    .d-none--m {
      display: none; } }
  @media (min-width: 768px) {
    .d-none--l {
      display: none; } }

.d-block {
  display: block; }

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.d-inline {
  display: inline; }

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

.l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%; }

.l-row, .l-row--fluid, .l-row--inner {
  width: 100%; }

.l-row {
  margin-right: auto;
  margin-left: auto; }
  @media (max-width: 767px) {
    .l-row {
      padding-left: 20px;
      padding-right: 20px; } }
  .l-row--fluid {
    max-width: 100%; }

.l-gutter, .l-gutter--line {
  padding-left: 20px;
  margin-left: 20px; }
  .l-gutter--line {
    border-left: 1px solid #d5d5d5; }

.l-no-padding {
  padding: 0; }

.l-column {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.l-width--1-2 {
  width: 50%; }

@media (min-width: 0) and (max-width: 479px) {
  .l-width-ss-100 {
    width: 100%; } }

/*
clases para control de objetos flex

Elementos:
justifiy content
flex row
flex container
flex grow
flex skrin

*/
.l-flex-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.l-flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.l-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.l-flex-space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.l-flex-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.l-flex-space-evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly; }

.l-flex-grow-1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.l-flex-grow-2 {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2; }

.l-flex-grow-3 {
  -webkit-box-flex: 3;
  -ms-flex-positive: 3;
  flex-grow: 3; }

.l-flex-grow-1000 {
  -webkit-box-flex: 1000;
  -ms-flex-positive: 1000;
  flex-grow: 1000; }

.l-flex-shrink-1 {
  -ms-flex-negative: 1;
  flex-shrink: 1; }

.l-flex-shrink-2 {
  -ms-flex-negative: 2;
  flex-shrink: 2; }

.l-flex-shrink-3 {
  -ms-flex-negative: 3;
  flex-shrink: 3; }

.l-flex-shrink-1000 {
  -ms-flex-negative: 1000;
  flex-shrink: 1000; }

.l-flex-no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
