.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-flex;
  display: -ms-flexbox;
  display: flex; }

.d-inline {
  display: inline; }

* {
  box-sizing: border-box; }

.l-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -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-flex-grow: 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-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.topbar {
  padding: 8px 16px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  box-shadow: 1px 1px 2px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  padding: 0 10px;
  height: 56px; }
  @media (max-width: 767px) {
    .topbar {
      height: 36px; } }
  .admin-bar .topbar {
    top: 32px; }
  .topbar__container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%; }
    @media (max-width: 767px) {
      .topbar__container {
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: 36px; } }
  @media (max-width: 767px) {
    .topbar__link img {
      width: 160px; } }
  .topbar__logo {
    display: block;
    margin-right: 1rem;
    max-height: 72px;
    max-height: 40px;
    height: 28px; }

.site-main {
  top: 56px;
  position: relative;
  margin-top: -33px; }
  @media (max-width: 767px) {
    .site-main {
      top: 36px; } }

/*# sourceMappingURL=topbar-1.css.map */