///Theme for component Layout.
///
///@author Federico Gambardella<fedega86@libero.it>
///@param $section
///@param $map
@mixin component-layout($section, $map) {
    @if($section == 'header' or $section == 'footer' or $section == 'sidebar-left' or $section == 'body-container' or $section == 'layout') {
    .#{$section} {
        @include writeClassProperty($map);
      }
    }
}