

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');

@import url('https://fonts.googleapis.com/css?family=Markazi+Text');

/**
* Title: StartGator Starter Kit
* Author/s: Mono
* CSS build platform: Gulp
* CSS development build command: gulp styles
* CSS production build command: gulp styles
* CSS processor: PostCSS
* CSS processor usage: autoprefixing, nesting, variables, minification, pxtorem, color functions
* CSS name convention: BEM
* Global indentation: 4 spaces
* Global units: px
* Global prefix: none
* Browser support: IE9+, last 3 versions of modern browsers, Android 4+, iOS6+
* Additional notes: Some properties with pixel units (depending on the whitelist in Gulpfile) are being recalculated to REM units
*/

/**
* Import: vars
* Description: variables
*/
/*------------------------------------*\
    # vars.globals
\*------------------------------------*/

/**
 * The $unit variable is a global variable to be used
 * in paddings, margins, for sizing and positioning
 */

/**
 * The $spacer variable is a global variable to be used
 * in to create a unified spacer for all kinds of elements
 */

/**
 * Global class prefix - usage: .$(global-prefix)classname
 */

/**
 * Global radius and rounded
 */
/*------------------------------------*\
    # vars.typography
\*------------------------------------*/

/**
 * Project base line height (unitless in order to work with typomatic)
 */

/**
 * Type scale sizes must be entered in their pixel size
 * (unitless in order to work with typomatic)
 * Default type scale ratio: 1.333;
 */

/** 
 * Type weights
 */

/**
 * Font stacks
 */
/*------------------------------------*\
    # vars.responsive
\*------------------------------------*/ /* 544px */ /* 543px */ /* 768px */ /* 767px */ /* 992px */ /* 991px */ /* 1200px */ /* 1199px */ /* 1440px */ /* 1439px */ /* 1600px */ /* 1599px */
/*------------------------------------*\
    # vars.colors
\*------------------------------------*/

/**
 * Generic colors
 * Color naming taken from: http://www.color-blindness.com/color-name-hue/
 */

/**
 * Brand colors
 */

/**
 * Global text color
 */

/**
 * Theme colors
 */

/*
    Shades of gray (pure gray)
    ------------------------------------
    If you need mix some color to gray, use 10% of saturated color
*/  /*  6% - lightness */  /* 17% - lightness */  /* 28% - lightness */  /* 39% - lightness */  /* 50% - lightness */  /* 61% - lightness */  /* 72% - lightness */  /* 83% - lightness */  /* 94% - lightness */

/**
 * Utility colors
 */

/**
* Import: tools
* Description: tools like typomatic and other mixins / libraries
*/
/*------------------------------------*\
    # tools.typomatic
\*------------------------------------*/

/**
 * Mixin name: typomatic-init
 * Description: creates a vertical rhythm on a page using font-size
 * and line-height on the html element
 * Parameters: 
 * does not take parameters
 */

/**
 * Mixin name: type-scale
 * Description: type-scale sets the type to baseline to achieve
 * vertical rhythm.
 * Parameters: 
 * $scale ($base-font-size is default) - font size (unitless) variable
 * $baselines (1 is default) - number of baselines
 */
/*------------------------------------*\
    # tools.bubba
\*------------------------------------*/

/**
 * Custom 12 column grid with 2% gutters (6.5% width column).
 * $grid-gutter - amount of space between columns
 * $grid-columns - number of columns of the grid
 */

/**
 * The grid-row mixin is used for building rows
 */

/**
 * The grid-span mixin is used for building grid columns
 */

/**
 * The grid-col mixin is used for gutters
 */

/**
 * The grid-push mixin is used for pushing columns using margin-left
 * for the space of a number of columns
 */

/**
 * The grid-pull mixin is used for pulling columns using margin-left
 * for the space of a number of columns
 */

/**
 * Grid
 */
.grid {
}
.grid:after {
    content:"";
    display:table;
    clear:both;
}

/**
 * Row
 */
.row {
    margin-left:    -0.5rem;
    margin-right:   -0.5rem;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-pack:left;
        justify-content:left;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
}
.row:after{
    content:"";
    display:table;
    clear:both;
}
@media   (min-width: 75em) {
    .row{
        margin-left:-1.5rem;
        margin-right:-1.5rem;
    }
}

/**
 * Column
 */
.col {
    padding-left:    0.5rem;
    padding-right:   0.5rem;
}
@media   (min-width: 75em) {
    .col{
        padding-left:1.5rem;
        padding-right:1.5rem;
    }
}
.col__spacer {
    margin-bottom: 1.5rem;
}
@media   (min-width: 75em) {
    .col__spacer{
        margin-bottom:3rem;
    }
}

/**
* Import: generic
* Description: normalize or reset CSS, box sizing
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 2.5rem;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 0.125rem;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}
/*------------------------------------*\
    # generic.boxsizing
\*------------------------------------*/

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/**
* Import: base
* Description: base structural stylings for setting the body, typography
* and other base styles (no classes should be added here)
*/
/*------------------------------------*\
    # base.globals
\*------------------------------------*/

/**
 * Initialize typomatic in project (sets font-size and line-height
 * on html selector.
 */
html {
    font-size:100%;
    line-height:1.5;
}

body {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

svg {
    max-width: 100%;
}
/*------------------------------------*\
    # base.typography
\*------------------------------------*/

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
h1 {
    font-size:2.0625rem;
    line-height:2.625rem;
}
h2 {
    font-size:1.75rem;
    line-height:2.25rem;
}
h3 {
    font-size:1.4375rem;
    line-height:1.875rem;
}
h4, h5, h6 {
    font-size:1.1875rem;
    line-height:1.5rem;
}

/**
 * Paragraphs
 */
p {
    margin: 0;
}

/**
 * Lists (ol, ul, dd)
 */
ol, ul, dl {
    margin: 0;
    padding: 0;
    list-style: none;
}
ol {}
ol li {}
ul {}
ul li {}
dd {}
dl dt {}
dl dd {}

/**
 * Anchors
 */
a {
    text-decoration: none;
}
a:link {}
a:hover {}
a:focus {}
a:visited {}

/**
 * Typographic details
 */
hr {}
em {}
b, strong {
    font-weight: bold
}
address {}
small {}
pre {}
code {}
sub {}
sup {}
strike {}

/**
* Import: modules
* Description: cross project reusable modules
*/
/*------------------------------------*\
    # modules.btn
\*------------------------------------*/

.btn {

    /**
     * Button base
     */
    display: inline-block;
    vertical-align: middle;
    position: relative;
    
    -ms-touch-action: manipulation;
    
        touch-action: manipulation;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    border: 0;

    /**
     * Button base project styling
     */
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.btn:focus {
    outline: 0;
}

.btn__icon {
    position: absolute;
    left: 0.75rem;
    top: 0.375rem;
    padding-right: 0.75rem;
    opacity: 0.4;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

/**
     * Button styles
     */

.btn--primary {
    background: #cea191;
    color: white;
}

.btn--primary:hover {
    background: rgb(181, 155, 145);
}

.btn--secondary {
    background: #838d9b;
    color: white;
}

.btn--secondary:hover {
    background: rgb(130, 137, 148);
}

.btn--tertiary {
    background-color: transparent;
    border: 1px solid #cea191;
    color: #cea191;
}

.btn--tertiary:hover {
    border: 1px solid rgb(156, 148, 145);
}

.btn--ghost {
    background-color: transparent;
    color: #cea191;
}

.btn--ghost:hover {
    color: rgb(181, 155, 145);
}

.btn--link--warning {
    color: #F44336;
}

.btn--link--warning:hover {
    color: rgb(219, 65, 54);
}

.btn--reset {
    padding: 0;
    background-color: transparent;
    border: none;
}

/**
    * Button sizes
    */

.btn--xsml {
    height: 1.5rem;
    line-height: 1.5rem;
    padding: 0.375rem 0;
    font-size: 0.6875rem;
}

.btn--sml {
    height: 1.5rem;
    line-height: 1.5rem;
    padding: 0 0.75rem;
}

.btn--med {
    height: 2.25rem;
    line-height: 2.25rem;
    padding: 0 1.125rem;
}

.btn--lrg {
    height: 3rem;
    line-height: 3rem;
    padding: 0 1.5rem;
}

.btn--rounded {
    border-radius: 3px;
}

.btn--full {
    width: 100%;
}

.hide {
    display: none;
}
.rotate {
    transform: rotate(180deg);
    transition: all .5s ease;
}
/*------------------------------------*\
    # modules.link
\*------------------------------------*/

.link {
	text-decoration: none;
	transition: ease .2s all;
}

.link--primary {
    color: #cea191;
}

.link--primary:hover, .link--primary:focus {
    color: rgb(181, 155, 145);
}
/*------------------------------------*\
    # modules.container
\*------------------------------------*/

.container {
 	margin: 0 auto;
    padding: 0 3rem;
}

.container--primary {
    max-width: 1440px;
}
/*------------------------------------*\
    # modules.input
\*------------------------------------*/

.input {
    /**
     * Input base
     */
    display: inline-block;
    width: 100%;

    vertical-align: middle;
    cursor: pointer;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    -moz-appearance: none;
         appearance: none;
    transition: border-color 200ms;
    -webkit-appearance: none;
    background-color: white;

    /**
     * Input base project styling
     */
    font-family: Roboto, Helvetica, Arial, sans-serif;
    border: 1px solid #f0f0f0;
}

.input:-ms-input-placeholder {
    color: rgb(159, 159, 159);
}

.input::placeholder {
    color: rgb(159, 159, 159);
}

.input::-webkit-inner-spin-button,
    .input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input:invalid {
    border: 1px solid #F44336;
}

.input:focus {
    outline: 0;
    border-color: #cea191;
}

.input:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.input--auto {
    width: auto;
}

/**
     * Input sizes
     */

.input--sml {
    height: 1.5rem;
    line-height: 1.5rem;
    padding: 0 0.375rem;
}

.input--med {
    height: 2.25rem;
    line-height: 2.25rem;
    padding: 0 0.75rem;
}

.input--lrg {
    height: 3rem;
    line-height: 3rem;
    padding: 0 1.125rem;
}

/**
     * Input types
     */

.input--text {
    font-size:0.875rem;
    line-height:1.5rem;
    padding: 0.5625rem;
    width: 100%;
}

.input--textarea {
    padding: 0.5625rem;
    width: 100%;
    max-width: 100%;
}

.input--select, 
    .input--date, 
    .input--search {
    padding-right: 1.5rem;
    font-size:0.875rem;
    line-height:1.5rem;
    background-image: url(../../src/img/baseline-keyboard_arrow_down-24px.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: calc(100% - 6px) center;
    vertical-align: middle;
}

.input--date {
    background-image: url(assets/images/icons/ic_date_range_black_24px.svg);
}

.input--search {
    padding-left: 1.875rem;
    background-image: url(../../src/img/baseline-search-24px.svg);
    background-position: 6px center;
}

.input--check,
    .input--radio {
    opacity: 0;
    position: absolute;
}

.input--check + label, .input--radio + label {
    cursor: pointer;
}

.input--check + label:before, .input--radio + label:before {
    content: '';
    float: left;
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.0625rem;
    margin-right: 0.75rem;
    border: 1px solid #d4d4d4;
}

.input--check:checked + label:before, .input--radio:checked + label:before {
    background-repeat: no-repeat;
    background-position: center center;
}

.input--check:focus + label:before, .input--radio:focus + label:before {
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.input--check:checked + label:before {
    background-image: url(/assets/images/icons/ic_check_box_black_24px.svg);
    border-color: transparent;
}

.input--radio + label:before {
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
}

.input--radio:checked + label:before {
    background-image: url(/assets/images/icons/ic_radio_button_checked_black_24px.svg);
}

.input--radio:focus + label:before {
    box-shadow: 0 0 10px #000;
}

.input--warning {
    border: 1px solid #F44336;
}

.input--currency {

    /* background-image: url(../../assets/img/money-icon.svg); */
    background-repeat: no-repeat;
    background-position: 1% center;
    padding-left: 5% !important;
}

.input__note {
    color: #b8b8b8;
    font-style: italic;
}
/*------------------------------------*\
    # modules.loader
\*------------------------------------*/

.loader {
	position: absolute;
    z-index: 10;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all .5s;
    background: rgb(39, 45, 55);
}

.loader__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.75rem;
    height: 3.75rem;
    margin: -1.875rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-right-color: #fff;
    animation: spinner .5s infinite linear;
}

.loader__message {
    text-align: center;
    color: #fff;
}

 @keyframes spinner {
	  0% {
	    transform: rotate(0deg);
	  }
	  100% {
	    transform: rotate(360deg);
	  }
}
/*------------------------------------*\
    # modules.title
\*------------------------------------*/

.title--primary {
    position: relative;
    margin-bottom: 1.125rem;
}

.title--primary:before {
    content: '';
    display: block;
    position: absolute;
    top: 1.3125rem;
    left: -7.5rem;
    height: 0.0625rem;
    width: 6rem;
    background: #cea191;
}

.title--primary--sub {
    margin-bottom: 4.125rem;
}
/* @import modules.input.css; */

/**
* Import: components
* Description: specific website/app components
*/
/*------------------------------------*\
    # components.header
\*------------------------------------*/

.header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	height: 3.75rem;
	background-color: #f9f3f1;
}

@media    (min-width: 34em) {
    .header{
        height:5rem;
    }
}

@media   (min-width: 75em) {
    .header{
        left:18.75rem;
    }
}

.header__hamburger {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.125rem;
}

@media    (min-width: 34em) {
    .header__hamburger{
        padding:1.5rem;
    }
}

@media   (min-width: 75em) {
    .header__hamburger{
        display:none;
    }
}

.header__hamburger__img {
    width: 1.5rem;
}

.header__menu {
    overflow: hidden;
    display: table;
    margin: 0 auto;
    color: #cea191;
    text-align: center;
}

.header__menu__item {
    float: left;
    margin: 0 0.75rem;
}

@media    (min-width: 34em) {
    .header__menu__item{
        margin:0 1.5rem;
    }
}

.header__menu__link {
    position: relative;
    display: block;
    height: 3.75rem;
    padding: 1.3125rem 0;
    font-size:0.875rem;
    line-height:1.5rem;
    color: #cea191;
}

@media    (min-width: 34em) {
    .header__menu__link{
        height:5rem;
        padding:1.6875rem 0;
    }
}

.header__menu__link.is-active {
    color: #212830;
    font-weight: 500;
}

.header__menu__link.is-active:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.0625rem;
    background-color: #212830;
}
/*------------------------------------*\
    # components.sidebar
\*------------------------------------*/

.sidebar__logo {
    display: block;
    margin-top: 0.375rem;
    padding: 0.75rem 0;
    font-size:1.75rem;
    line-height:3rem;
    color: #fff;
    text-align: center;
    font-family: 'Markazi Text';
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sidebar__separator {
    height: 0.0625rem;
    margin: 0 2.25rem 1.125rem;
    background-color: #38414c;
}

.sidebar__filters {
    font-size:0.875rem;
    line-height:1.5rem;
}

.sidebar__filters__title {
    margin: 0 0 0.125rem 2.25rem;
    color: #38414c;
}

.sidebar__filters__list {
    margin-bottom: 0.75rem;
    padding: 0 2.25rem;
}

.sidebar__filters__item {
    position: relative;
    padding-left: 1.875rem;
    color: #fff;
}

.sidebar__filters__item:before {
    content: '';
    display: block;
    position: absolute;
    top: 0.125rem;
    left: 0;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url('../../src/img/baseline-check_box_outline_blank-24px.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.sidebar__filters__item.is-active {
    color: #cea191;
}

.sidebar__filters__item.is-active:before {
    background-image: url('../../src/img/baseline-check_box_blank-24px.svg');
}
/*------------------------------------*\
    # components.card
\*------------------------------------*/

.card {
	overflow: hidden;
	position: relative;
	height: 100%;
	padding: 0.75rem;
	box-shadow: 6px 6px 48px #dfe0e0;
}

.card:before {
    content: '';
    display: block;
    position: absolute;
    top: -3.75rem;
    right: -7.5rem;
    left: -7.5rem;
    height: 11.25rem;
    background: #edddd7;
    border-radius: 50%;
    transition: ease .25s all;
    z-index: -1;
}

@media   (min-width: 75em) {
    .card:before {
        height: 18.75rem;
    }
}

.card:hover:before {
    height: 200%;
    border-radius: 0;
}

.card:hover .card__price__old {
    color: #fff;
}

.card:hover .card__price__cart:before {
    background-color: #fff;
}

.card.is-active {
    box-shadow: 0 0 0 1px #cea191;
}

.card__title {
    margin: 0.375rem 0;
    font-size:0.875rem;
    line-height:1.5rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media    (min-width: 34em) {
    .card__title{
        margin:0.75rem 0;
    }
}

.card__divider {
    height: 0.0625rem;
    margin: 0 -0.75rem 0.75rem -0.75rem;
    background: #f0f0f0;
}

.card__sale {
    position: absolute;
    top: 0.375rem;
    left: 0.375rem;
    padding: 0 0.375rem;
    font-size:0.875rem;
    line-height:1.5rem;
    background-color: #cea191;
    color: #fff;
}

@media   (min-width: 75em) {
    .card__sale{
        padding:0.75rem;
    }
}

.card__price {
    overflow: hidden;
}

.card__price__old {
    margin-right: 0.75rem;
    color: #d4d4d4;
    text-decoration: line-through;
    transition: ease .25s all;
}

.card__price__new {
    color: #cea191;
}

.card__price__cart {
    position: relative;
    width: 1.5rem;
    text-align: center;
}

.card__price__cart.is-active:before {
    content: '';
    display: block;
    position: absolute;
    top: 0.375rem;
    left: 0.375rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #cea191;
    border-radius: 1000px;
    animation: pulse 1s infinite;
    animation-fill-mode: forwards;
    z-index: -1;
}

@keyframes pulse {
	0% {
		width: 0.75rem;
		height: 0.75rem;
	}
	
	100% {
		width: 1.875rem;
		height: 1.875rem;
		opacity: 0;
		visibility: hidden;
		transform: translate(-9px, -9px);
	}
}
/*------------------------------------*\
    # components.cart
\*------------------------------------*/

.cart {
	display: table;
	width: 100%;
	margin: 0.75rem 0 1.125rem;
	padding: 0 1.125rem;
	font-size:0.75rem;
	line-height:1.125rem;
}

.cart__item {
    display: table-row;
}

.cart__image, .cart__description {
    display: table-cell;
    vertical-align: middle;
}

.cart__image {
    width: 20%;
}

.cart__description {
    width: 80%;
    padding: 0 0.75rem;
}

.cart__title {
    display: block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*------------------------------------*\
    # components.filters
\*------------------------------------*/

.filters {
	margin-bottom: 1.5rem;
	border-bottom: 1px solid #f0f0f0;
}

.filters__field {
    margin-bottom: 0.75rem;
}

@media    (min-width: 34em) {
    .filters__field{
        margin-bottom:1.125rem;
    }
}

@media    (min-width: 62em) {
    .filters__field{
        margin-bottom:1.5rem;
    }
}

.filters--hidden {
    display: none;
}

@media    (min-width: 62em) {
    .filters--hidden{
        display:block;
    }
}

@media      (max-width: 61.9375em) {
    .filters--hidden.is-active{
        display:block;
    }
}

.filters__search {
    position: relative;
    padding-right: 3.375rem;
}

@media    (min-width: 62em) {
    .filters__search{
        padding-right:0;
    }
}

.filters__btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0.25rem;
    border: 1px solid #f0f0f0;
    text-align: center;
}

@media    (min-width: 62em) {
    .filters__btn{
        display:none;
    }
}
/*------------------------------------*\
    # components.nav
\*------------------------------------*/

.nav {
	margin-bottom: 0.75rem;
	font-size:0.875rem;
	line-height:1.5rem;
}

.nav__item {
    display: block;
}

.nav__link {
    position: relative;
    display: block;
    padding: 0.375rem 2.25rem;
    letter-spacing: 0.05em;
    color: #fff;
}

.nav__link.is-active {
    color: #cea191;
}

.nav__link.is-active:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0.125rem;
    height: 100%;
    background: #cea191;
}

.nav__sublist {
    padding: 0.375rem 0;
    background-color: #28303a;
}

.nav__subitem {
    display: block;
}

.nav__sublink {
    display: block;
    padding: 0.375rem 3rem;
    color: #fff;
}
/*------------------------------------*\
    # components.user
\*------------------------------------*/

.user {
	position: fixed;
	top: 0;
	right: 0;
	width: 2.25rem;
	margin: 0.75rem;
}

@media    (min-width: 34em) {
    .user{
        margin:1.5rem;
    }
}

.user__image {
    border-radius: 1000px;
}

.user__menu {
    opacity: 0;
    visibility: hidden;
    display: block;
    position: absolute;
    top: 3.75rem;
    right: 0;
    width: 16.125rem;
    background-color: #fff;
    box-shadow: 6px 6px 48px #dfe0e0;
    transform: translateY(-12px);
    transition: ease .2s all;
}

@media    (min-width: 34em) {
    .user__menu{
        top:5rem;
        right:1.125rem;
    }
}

.user__menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user__menu__item {
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

.user__menu__item:last-child {
    border-bottom: none;
}

.user__menu__item:nth-last-child(2) {
    border-bottom: none;
}

.user__menu__link {
    display: block;
    overflow: hidden;
    padding: 0.5625rem 1.125rem;
    font-size:0.875rem;
    line-height:1.5rem;
    color: #cea191;
}

.user__menu__link:hover {
    color: #333;
}

.user__menu__indicator {
    float: right;
    background-color: #28303a;
    color: #fff;
    width: 1.5rem;
    text-align: center;
    border-radius: 1000px;
}

.user__actions {
    float: left;
    width: 50%;
    font-size:0.875rem;
    line-height:2.25rem;
    border-top: 1px solid #cea191;
}
/*------------------------------------*\
    # components.layout
\*------------------------------------*/

.layout--aside {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 18.75rem;
    background-color: #212830;
    overflow-y: auto;
    transform: translateX(-300px);
    transition: ease .2s all;
}

@media   (min-width: 75em) {
    .layout--aside{
        transform:translateX(0);
    }
}

@media     (max-width: 74.9375em) {
    .layout--aside.is-active{
        transform:translateX(0);
    }
}

.layout--main {
    position: fixed;
    top: 3.75rem;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0.75rem;
    background-color: #fff;
    overflow-y: auto;
    z-index: -1;
}

@media    (min-width: 34em) {
    .layout--main{
        top:5rem;
        padding:1.5rem;
    }
}

@media   (min-width: 48em) {
    .layout--main{
        padding:2.25rem;
    }
}

@media   (min-width: 75em) {
    .layout--main{
        left:18.75rem;
        padding:1.5rem 3rem;
    }
}

/**
* Import: views
* Description: specific website/app views (example: 404 view, login view)
*/
/* @import views.login.css; */
/* @import views.404.css; */

/**
* Import: utils
* Description: reusable utilities such as floats, spacers etc.
*/
/*------------------------------------*\
    # utils.grid
\*------------------------------------*/

/**
 * Small grid
 */
.col-sml-1 {
    width:8.33333%;
    float:left;
}
.col-sml-2 {
    width:16.66667%;
    float:left;
}
.col-sml-3 {
    width:25%;
    float:left;
}
.col-sml-4 {
    width:33.33333%;
    float:left;
}
.col-sml-5 {
    width:41.66667%;
    float:left;
}
.col-sml-6 {
    width:50%;
    float:left;
}
.col-sml-7 {
    width:58.33333%;
    float:left;
}
.col-sml-8 {
    width:66.66667%;
    float:left;
}
.col-sml-9 {
    width:75%;
    float:left;
}
.col-sml-10 {
    width:83.33333%;
    float:left;
}
.col-sml-11 {
    width:91.66667%;
    float:left;
}
.col-sml-12 {
    width:100%;
    float:left;
}

/**
 * Medium grid
 */
@media    (min-width: 34em) {
    .col-med-1 {
        width:8.33333%;
        float:left;
    }
    .col-med-2 {
        width:16.66667%;
        float:left;
    }
    .col-med-3 {
        width:25%;
        float:left;
    }
    .col-med-4 {
        width:33.33333%;
        float:left;
    }
    .col-med-5 {
        width:41.66667%;
        float:left;
    }
    .col-med-6 {
        width:50%;
        float:left;
    }
    .col-med-7 {
        width:58.33333%;
        float:left;
    }
    .col-med-8 {
        width:66.66667%;
        float:left;
    }
    .col-med-9 {
        width:75%;
        float:left;
    }
    .col-med-10 {
        width:83.33333%;
        float:left;
    }
    .col-med-11 {
        width:91.66667%;
        float:left;
    }
    .col-med-12 {
        width:100%;
        float:left;
    }
}

/**
 * Large grid
 */
 @media   (min-width: 48em) {
    .col-lrg-1 {
        width:8.33333%;
        float:left;
    }
    .col-lrg-2 {
        width:16.66667%;
        float:left;
    }
    .col-lrg-3 {
        width:25%;
        float:left;
    }
    .col-lrg-4 {
        width:33.33333%;
        float:left;
    }
    .col-lrg-5 {
        width:41.66667%;
        float:left;
    }
    .col-lrg-6 {
        width:50%;
        float:left;
    }
    .col-lrg-7 {
        width:58.33333%;
        float:left;
    }
    .col-lrg-8 {
        width:66.66667%;
        float:left;
    }
    .col-lrg-9 {
        width:75%;
        float:left;
    }
    .col-lrg-10 {
        width:83.33333%;
        float:left;
    }
    .col-lrg-11 {
        width:91.66667%;
        float:left;
    }
    .col-lrg-12 {
        width:100%;
        float:left;
    }
}

/**
 * XLarge grid
 */
@media    (min-width: 62em) {
    .col-xlrg-1 {
        width:8.33333%;
        float:left;
    }
    .col-xlrg-2 {
        width:16.66667%;
        float:left;
    }
    .col-xlrg-3 {
        width:25%;
        float:left;
    }
    .col-xlrg-4 {
        width:33.33333%;
        float:left;
    }
    .col-xlrg-5 {
        width:41.66667%;
        float:left;
    }
    .col-xlrg-6 {
        width:50%;
        float:left;
    }
    .col-xlrg-7 {
        width:58.33333%;
        float:left;
    }
    .col-xlrg-8 {
        width:66.66667%;
        float:left;
    }
    .col-xlrg-9 {
        width:75%;
        float:left;
    }
    .col-xlrg-10 {
        width:83.33333%;
        float:left;
    }
    .col-xlrg-11 {
        width:91.66667%;
        float:left;
    }
    .col-xlrg-12 {
        width:100%;
        float:left;
    }
}

/**
 * XXLarge grid
 */
@media   (min-width: 75em) {
    .col-xxlrg-1 {
        width:8.33333%;
        float:left;
    }
    .col-xxlrg-2 {
        width:16.66667%;
        float:left;
    }
    .col-xxlrg-3 {
        width:25%;
        float:left;
    }
    .col-xxlrg-4 {
        width:33.33333%;
        float:left;
    }
    .col-xxlrg-5 {
        width:41.66667%;
        float:left;
    }
    .col-xxlrg-6 {
        width:50%;
        float:left;
    }
    .col-xxlrg-7 {
        width:58.33333%;
        float:left;
    }
    .col-xxlrg-8 {
        width:66.66667%;
        float:left;
    }
    .col-xxlrg-9 {
        width:75%;
        float:left;
    }
    .col-xxlrg-10 {
        width:83.33333%;
        float:left;
    }
    .col-xxlrg-11 {
        width:91.66667%;
        float:left;
    }
    .col-xxlrg-12 {
        width:100%;
        float:left;
    }
}

/**
 * XXXLarge grid
 */
@media  (min-width: 100em) {
    .col-xxxlrg-1 {
        width:8.33333%;
        float:left;
    }
    .col-xxxlrg-2 {
        width:16.66667%;
        float:left;
    }
    .col-xxxlrg-3 {
        width:25%;
        float:left;
    }
    .col-xxxlrg-4 {
        width:33.33333%;
        float:left;
    }
    .col-xxxlrg-5 {
        width:41.66667%;
        float:left;
    }
    .col-xxxlrg-6 {
        width:50%;
        float:left;
    }
    .col-xxxlrg-7 {
        width:58.33333%;
        float:left;
    }
    .col-xxxlrg-8 {
        width:66.66667%;
        float:left;
    }
    .col-xxxlrg-9 {
        width:75%;
        float:left;
    }
    .col-xxxlrg-10 {
        width:83.33333%;
        float:left;
    }
    .col-xxxlrg-11 {
        width:91.66667%;
        float:left;
    }
    .col-xxxlrg-12 {
        width:100%;
        float:left;
    }
}
/*------------------------------------*\
    # util.spacers
\*------------------------------------*/

.spc--top--sml {
    margin-top: 0.75rem;
}

.spc--top--med {
    margin-top: 1.5rem;
}

.spc--top--lrg {
    margin-top: 2.25rem;
}

.spc--top--xlrg {
    margin-top: 3rem;
}

.spc--bottom--xsml {
    margin-bottom: 0.375rem;
}

.spc--bottom--sml {
    margin-bottom: 0.75rem;
}

.spc--bottom--med {
    margin-bottom: 1.5rem;
}

.spc--bottom--lrg {
    margin-bottom: 2.25rem;
}

.spc--bottom--xlrg {
    margin-bottom: 3rem;
}

.spc--left--xsml {
    margin-left: 0.375rem;
}

.spc--left--sml {
    margin-left: 0.75rem;
}

.spc--left--base {
    margin-left: 1.125rem;
}

.spc--left--med {
    margin-left: 1.5rem;
}

.spc--left--lrg {
    margin-left: 2.25rem;
}

.spc--left--xlrg {
    margin-left: 3rem;
}
/*------------------------------------*\
    # utils.type
\*------------------------------------*/

.type--sans {
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.type--serif {
    font-family: Georgia, Times, serif;
}

.type--tiny {
    font-size:0.75rem;
    line-height:1.125rem;
}

.type--small {
    font-size:0.875rem;
    line-height:1.5rem;
}

.type--base {
    font-size:1rem;
    line-height:1.5rem;
}

.type--medium {
    font-size:1rem;
    line-height:1.5rem;
}

@media   (min-width: 48em) {
    .type--medium{
        font-size:1.1875rem;
        line-height:1.875rem;
    }
}

.type--large {
    font-size:1.1875rem;
    line-height:1.875rem;
}

@media   (min-width: 48em) {
    .type--large{
        font-size:1.4375rem;
        line-height:2.25rem;
    }
}

.type--xlarge {
    font-size:1.4375rem;
    line-height:2.25rem;
}

@media   (min-width: 48em) {
    .type--xlarge{
        font-size:1.75rem;
        line-height:3rem;
    }
}

/*     &--light {
        font-weight: $type-weight-light;
    } */

.type--regular {
    font-weight: 400;
}

.type--bold {
    font-weight: 700;
}

.type--negative {
    color: white;
}

.type--opaque {
    color: rgba(255, 255, 255, 0.75);
}

.type--color--primary {
    color: #cea191;
}
/*------------------------------------*\
# util.floats
\*------------------------------------*/

.right {
   float: right;
}

.left {
   float: left;
} 
/*------------------------------------*\
    # util.shadow
\*------------------------------------*/

.shadow {
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
}
/* @import utils.visibility.css; */

/**
* Import: plugins
* Description: 3rd party code, external plugin CSS etc
* Note: when importing code from a 3rd party it should be stripped off
* any vendor prefixes since autoprefixer will use project specific vendor prefixes
*/
/*------------------------------------*\
    # plugins.fontface
\*------------------------------------*/
/* @import plugins.select2.css; */
/* @import plugins.remodal.css; */

/**
* Import: shame
* Description: CSS shame file
* Note: to be avoided, exists only if REALLY necessary or legacy code
*/

/* @import shame.css; */