/*
 * @file
 * Provides the layout styles for layout_inline_block.
 */
/*  
.layout--inline-block {
  width: 100%;
  overflow: hidden;
}
 */
/*
.layout--inline-block .layout__region--top {
  
}
*/
/* 
.layout--inline-block .layout__region--float {
  float: right;
} 
*/

/*
body:after {
  content: '';
  display: block;
  clear: both;
}

@include mobile-max {
.layout--inline-block .layout__region--float {
  float: right;
    width: 100%;
  }
  }
@include tablet {
.layout--inline-block .layout__region--float {
  float: right;
    width: 50%;
  }
  }
@include desktop {
.layout--inline-block .layout__region--float {
  float: right;
    width: 38%;
  }
}
*/

