/*
To make it easier to use all variables and mixins in any Sass file in this
theme, each .scss file has a @import "base" declaration. And this _base.scss
file is in charge of importing all the other partials needed for the theme.

This base partial is organized in this way:
- First we set any shared Sass variables.
- Next we import Compass plug-ins (Sass mixin libraries).
- Last we import a _custom.scss partial that includes our custom mixins.
*/
/* COLORS
=========================== */
/* Used only with opacity */
/* Messages colors */
/* SIZES
=========================== */
/* MIXINS
=========================== */
/*
@mixin col-inner($outer,$items) {
  width: (($items * $col-width)) / ($outer * 100);
}*/
/* FONTS
=========================== */
/* MARGINS & SPACING
=========================== */
/* BREAKPOINTS
=========================== */
/* IE SUPPORT
=========================== */
/*
These variables are used by many mixins to add additional CSS to support
specific versions of IE or specific vendor prefixes.

To turn on support for IE6 or IE7, set those variables to true.

Zen does not require special handling for IE8 or later. But Compass uses that
variable for a couple edge cases. We include it for completeness sake. See
the documentation at http://compass-style.org/reference/compass/support/
*/
/* IMPORTS
=========================== */
/*@import "toolkit/pe"; */
/*@import "custom";           // Import our custom mixins last. */
/* BLOCKS
=========================== */
/* line 6, ../sass/blocks.scss */
.region-content .block {
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  /* line 6, ../sass/blocks.scss */
  .region-content .block {
    margin-bottom: 20px;
  }
}
/* line 8, ../sass/blocks.scss */
.region-content .block.last {
  margin-bottom: 0;
}

/* line 12, ../sass/blocks.scss */
.sidebar .block {
  /* Block wrapper */
  padding: 30px;
  margin-bottom: 30px;
  background: #f1f0eb;
  padding: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 500px) {
  /* line 12, ../sass/blocks.scss */
  .sidebar .block {
    padding: 25px;
  }
}
@media screen and (max-width: 500px) {
  /* line 12, ../sass/blocks.scss */
  .sidebar .block {
    padding: 25px;
  }
}
/* line 358, ../sass/_base.scss */
.sidebar .block:last-child {
  margin-bottom: 0;
}
/* line 17, ../sass/blocks.scss */
.sidebar .block.block-views ul, .sidebar .block.block-block ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* line 23, ../sass/blocks.scss */
.sidebar .block p:last-child {
  margin-bottom: 0;
}
