// ===================================
// rem
// ===================================
@function rem($current, $container: null) {
  @if $container {
    @return $current / $container * 100%;
  } @else {
    @error '$container is not defained';
  }
}