/* URLs */
/* colors */
/* Generic settings */
/* Generic settings */
/* FIX! */
/* CSS3 */
/**
* 
* Border radius
*
*/
/* Wrapper layouts */
/* Content layouts */
/* Headers */
/* Footers */
/* Navigations */
/* Drawers */
/* Overlays */
/* Btns */
/* Tables */
/******************************************

# Functions

# Contains:
1.    Functions

# Notes:

******************************************/
/* 1. Functions */
/* STRING Replace */
/*
@function str-replace($string, $old, $new) {

  @if type-of($string) != string or type-of($old) != string or type-of($new) != string {
    @warn 'One of the 3 arguments is not a string.';
    @return $string;
  }

  @if str-index($new, $old) != 0 {
    @warn 'The string to be replaced is contained in the new string. Infinite recursion avoided.';
    @return $string;
  }

  // $index: str-index($string, $old);
  $index: if(
    not $case-sensitive,
    str-index(to-lower-case($string), to-lower-case($old)),
    str-index($string, $old)
  );

  @if $index > 0 and $new != $old {
    $new-string: quote(str-slice($string, 1, $index - 1));
    @for $i from $index through str-length($string) {
      @if $i < $index or $i >= $index + str-length($old) {
        $new-string: $new-string + str-slice($string, $i, $i);
      }
    }
    $new-string: str-insert($new-string, $new, $index);
    @return str-replace($new-string, $old, $new);
  }
  @return $string;
}
*/
/******************************************

# Mixins

# Contains:
1.    Layout
2.    Hacks
3.    Fonts
4.    CSS3

# Notes:

******************************************/
/* 1. Productlist / Categorylist */
/* Debug */
/* CSS3 */
/* Backgrounds */
/* Tools */
/* Custom */
/* Fonts */
/* FIX! */
/* Specials */
/******************************************

# Extends

# Contains:
X.    Extends

# Notes:

******************************************/
/* 1. Extends */
body.admin-bar header#header {
  top: 32px;
}