@charset "UTF-8";
/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 23, ../sass/base/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 38, ../sass/base/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 54, ../sass/base/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 60, ../sass/base/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 108, ../sass/base/_normalize.scss */
html {
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/* Remove default margin. */
/* line 128, ../sass/base/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 150, ../sass/base/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 155, ../sass/base/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 171, ../sass/base/_normalize.scss */
p,
pre {
  margin: 1.5em 0;
}

/* line 175, ../sass/base/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 184, ../sass/base/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

/* line 192, ../sass/base/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 197, ../sass/base/_normalize.scss */
h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

/* line 202, ../sass/base/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 207, ../sass/base/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

/* line 212, ../sass/base/_normalize.scss */
h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 219, ../sass/base/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 224, ../sass/base/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 230, ../sass/base/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 235, ../sass/base/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
/* line 244, ../sass/base/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 250, ../sass/base/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 264, ../sass/base/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 276, ../sass/base/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 281, ../sass/base/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 286, ../sass/base/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 293, ../sass/base/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 296, ../sass/base/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 303, ../sass/base/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

/* line 312, ../sass/base/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 318, ../sass/base/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 323, ../sass/base/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 343, ../sass/base/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 364, ../sass/base/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 369, ../sass/base/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 385, ../sass/base/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.0625em;
  border-top-style: solid;
  padding-top: 0.4625em;
  border-bottom-width: 0.0625em;
  border-bottom-style: solid;
  padding-bottom: 0.9125em;
  border-left-width: 0.0625em;
  border-left-style: solid;
  padding-left: 0.9125em;
  border-right-width: 0.0625em;
  border-right-style: solid;
  padding-right: 0.9125em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 400, ../sass/base/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 415, ../sass/base/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 434, ../sass/base/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 445, ../sass/base/_normalize.scss */
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.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 459, ../sass/base/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  margin-bottom: 20px;
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 474, ../sass/base/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 485, ../sass/base/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 500, ../sass/base/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 509, ../sass/base/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
/* line 515, ../sass/base/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 525, ../sass/base/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 531, ../sass/base/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 539, ../sass/base/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 550, ../sass/base/_normalize.scss */
iframe {
  max-width: 100%;
}

/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
/* line 33, ../sass/layouts/_responsive.scss */
#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 41, ../sass/layouts/_responsive.scss */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

/* Containers for grid items and flow items. */
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:before, #header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/* Navigation bar */
@media all and (min-width: 480px) {
  /* line 60, ../sass/layouts/_responsive.scss */
  #main {
    /* Move all the children of #main down to make room. */
    padding-top: 3em;
    position: relative;
  }

  /* line 65, ../sass/layouts/_responsive.scss */
  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: absolute;
    top: 0;
    height: 3em;
    width: 100%;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 480px) and (max-width: 959px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 86, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 88, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 200%;
    margin-left: 100%;
    margin-right: -300%;
  }
  /* line 93, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 101, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  /* line 103, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 200%;
    margin-left: 0%;
    margin-right: -200%;
  }
  /* line 108, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 200%;
    margin-right: -300%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 116, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Start a new row and span all 3 columns. */
  }
  /* line 118, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 200%;
    margin-left: 100%;
    margin-right: -300%;
  }
  /* line 123, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 128, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 300%;
    margin-left: 0%;
    margin-right: -300%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  /* line 134, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 138, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  /* line 143, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 100%;
    margin-left: 100%;
    margin-right: -200%;
  }
  /* line 147, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 100%;
    margin-left: 200%;
    margin-right: -300%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 164, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 166, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 400%;
    margin-left: 100%;
    margin-right: -500%;
  }
  /* line 171, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 179, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 181, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 400%;
    margin-left: 0%;
    margin-right: -400%;
  }
  /* line 186, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 194, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 196, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 300%;
    margin-left: 100%;
    margin-right: -400%;
  }
  /* line 201, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 206, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 15, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 37, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 43, ../sass/components/_misc.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 60, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 63, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
/* line 79, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
/* line 86, ../sass/components/_misc.scss */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
/* line 91, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
/* line 96, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

/* The link around the name of the website. */
/* line 103, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 109, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/* line 116, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 121, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
/* line 126, ../sass/components/_misc.scss */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/**
 * Navigation bar.
 */
/* line 134, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 138, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 148, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 154, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
/* line 168, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 172, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 183, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
  line-height: 1.1em;
}

/**
 * Messages.
 */
/* line 196, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

/* line 211, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

/* line 220, ../sass/components/_misc.scss */
.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

/* line 230, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 233, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 238, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 243, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 248, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 253, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 264, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: linear-gradient(to top, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 274, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

/* line 278, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 291, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 #fff;
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 300, ../sass/components/_misc.scss */
.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

/* line 306, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

/* line 316, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 320, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
/* line 344, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

/* line 350, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

/* line 357, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -moz-border-radius: 0.75em;
  -webkit-border-radius: 0.75em;
  border-radius: 0.75em;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 #fff;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 366, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 371, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 399, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 403, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 411, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 418, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 421, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 424, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
/* line 439, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

/* line 444, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

/* line 451, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
/* line 461, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 471, ../sass/components/_misc.scss */
.block {
  margin-bottom: 1.5em;
}

/**
 * Menus.
 */
/* line 478, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

/* line 485, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

/* line 492, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
/* line 501, ../sass/components/_misc.scss */
.menu a.active {
  color: #000 !important;
}

/* line 506, ../sass/components/_misc.scss */
.chrome a.active {
  font: bold 1em arial;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 514, ../sass/components/_misc.scss */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 526, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 554, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 559, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 565, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 568, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 575, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 585, ../sass/components/_misc.scss */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 589, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 596, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 602, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 609, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 616, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
/* line 622, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 627, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Password confirmation. */
/* line 634, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 640, ../sass/components/_misc.scss */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
/* line 652, ../sass/components/_misc.scss */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
/* line 658, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

/* line 662, ../sass/components/_misc.scss */
html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

/* line 667, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
/* line 675, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 680, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 683, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 687, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 693, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 708, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 713, ../sass/components/_misc.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
/* line 719, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 730, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 741, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
/* line 750, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 757, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 769, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 772, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 775, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 784, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 793, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 796, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 802, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1648510975');
}

/**
* Video-related
*/
/* line 811, ../sass/components/_misc.scss */
.video-slide {
  display: none;
  width: 50%;
  padding-left: 30px;
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 15, ../sass/base/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/base/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/base/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/base/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  /* line 34, ../sass/base/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/base/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/base/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 54, ../sass/base/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 64, ../sass/base/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  #page-top,
  #subpage-lower-block-row,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
/**
 * General Elements
 */
/* line 4, ../sass/layouts/_global.scss */
html, body {
  margin: 0;
  padding: 0;
}

/* line 9, ../sass/layouts/_global.scss */
h1 {
  color: #555;
  font-weight: 400;
  font-size: 2.25em;
}

/* line 15, ../sass/layouts/_global.scss */
h2 {
  color: #d83900;
}
/* line 18, ../sass/layouts/_global.scss */
h2.views-field-title {
  color: #424242;
  font-size: inherit;
  line-height: normal;
}

/* line 25, ../sass/layouts/_global.scss */
h3 {
  color: #444;
}

/* line 29, ../sass/layouts/_global.scss */
h4 {
  color: #d83900;
}

/* line 33, ../sass/layouts/_global.scss */
a {
  color: #82047D;
  text-decoration: none;
}
/* line 37, ../sass/layouts/_global.scss */
a:hover {
  color: #444;
  text-decoration: underline;
}

/* line 43, ../sass/layouts/_global.scss */
p {
  color: #444;
  margin: 0px 0px 1.5em 0px;
}

/* line 48, ../sass/layouts/_global.scss */
ul, ol {
  color: #444;
  margin: 10px 0px 10px 15px;
  padding: 0px;
}
/* line 53, ../sass/layouts/_global.scss */
ul li, ol li {
  list-style-position: outside;
}

/* line 61, ../sass/layouts/_global.scss */
table {
  width: 100%;
}
/* line 64, ../sass/layouts/_global.scss */
table thead {
  border-bottom: 1px solid #ccc;
}
/* line 67, ../sass/layouts/_global.scss */
table thead th {
  color: #444;
  font-size: .85em;
  text-align: left;
  font-weight: normal;
}
/* line 75, ../sass/layouts/_global.scss */
table tr.even, table tr.odd {
  border: none;
  padding: 20px 15px 20px 15px;
}
/* line 80, ../sass/layouts/_global.scss */
table tr.even {
  background-color: #F7F7F7;
}
/* line 84, ../sass/layouts/_global.scss */
table tr.odd {
  background-color: #FFF;
}
/* line 88, ../sass/layouts/_global.scss */
table td {
  padding: 20px 5px 20px 5px;
  border: none;
  vertical-align: top;
  font-size: .9em;
}
/* line 95, ../sass/layouts/_global.scss */
table .views-field-field-event-dates {
  font-size: .85em;
}
/* line 99, ../sass/layouts/_global.scss */
table .views-field-title {
  margin: 0px;
}
/* line 102, ../sass/layouts/_global.scss */
table .views-field-title a {
  font-size: 1em !important;
  color: #82047d;
  font-weight: normal;
}
/* line 109, ../sass/layouts/_global.scss */
table .views-field-nothing {
  margin: 0px;
}
/* line 112, ../sass/layouts/_global.scss */
table .views-field-nothing a::after {
  content: ' »';
}

/* line 118, ../sass/layouts/_global.scss */
.row-center {
  text-align: center;
}

/* line 122, ../sass/layouts/_global.scss */
.clear {
  clear: both;
}

/* line 126, ../sass/layouts/_global.scss */
.menu__item.is-leaf {
  list-style-image: url("../images/bullet.png");
  list-style-type: circle;
}

/* line 131, ../sass/layouts/_global.scss */
#content {
  padding-bottom: 24px;
}

/* line 135, ../sass/layouts/_global.scss */
.sidebar-first #content {
  float: left;
  margin-left: 25%;
  margin-right: -100%;
  width: 75%;
}

@media screen and (max-width: 960px) {
  /* line 144, ../sass/layouts/_global.scss */
  .sidebar-first #content {
    float: left;
    margin-left: 25%;
    margin-right: -100%;
    width: 75%;
    /*
        margin-left:20px;
		margin-right:20px;
		width:auto;
        border: 1px solid orange;
         width: 100%;
        */
  }
}
@media screen and (max-width: 768px) {
  /* line 162, ../sass/layouts/_global.scss */
  .sidebar-first #content {
    width: 100%;
    float: none;
    margin: 0;
  }
}
/* line 171, ../sass/layouts/_global.scss */
.front #page #main .breadcrumb, .front #page #main .breadcrumb-page-title {
  display: none;
}

/* line 175, ../sass/layouts/_global.scss */
.front #page .views-row {
  padding: 0px;
  border: none;
}

/* line 180, ../sass/layouts/_global.scss */
#page {
  max-width: 100%;
  width: 100%;
}
/* line 184, ../sass/layouts/_global.scss */
#page .page-inner {
  margin: 0 auto;
  max-width: 980px;
}
/* line 189, ../sass/layouts/_global.scss */
#page #page-top {
  width: 100%;
  background: transparent url("../images/nav-bkgrnd.png") repeat-x top center;
  position: absolute;
  z-index: 5;
}

/* line 1, ../sass/layouts/_not-front-globals.scss */
.not-front {
  /* Flexslide gallery */
}
/* line 3, ../sass/layouts/_not-front-globals.scss */
.not-front .views-field-title {
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: normal;
}
/* line 8, ../sass/layouts/_not-front-globals.scss */
.not-front .views-field-title a {
  font-size: 1.4em;
  color: #424242;
  line-height: 1.1em;
  position: relative;
  z-index: 999;
}
/* line 17, ../sass/layouts/_not-front-globals.scss */
.not-front #page #page-top {
  position: absolute;
}
/* line 20, ../sass/layouts/_not-front-globals.scss */
.not-front #page #page-top.banner-image {
  position: absolute;
}
/* line 27, ../sass/layouts/_not-front-globals.scss */
.not-front #block-views-gallery-block .views-field-title {
  position: absolute;
  bottom: 0px;
  width: 100%;
  /*height:25px;*/
  background-color: #333333;
  opacity: 0.8;
  color: white;
}
/* line 35, ../sass/layouts/_not-front-globals.scss */
.not-front #block-views-gallery-block .views-field-title .field-content {
  padding: 10px;
}
/* line 37, ../sass/layouts/_not-front-globals.scss */
.not-front #block-views-gallery-block #flexslider-1 {
  border: 0px;
}
/* line 40, ../sass/layouts/_not-front-globals.scss */
.not-front #block-views-gallery-block .flex-control-thumbs {
  margin-top: 0px;
  background-color: black;
}
/* line 46, ../sass/layouts/_not-front-globals.scss */
.not-front #page #hero-banner {
  /*height: auto;
  margin-top: -78px;
  position: absolute;*/
  padding-top: 0;
  text-align: center;
  width: 100%;
  z-index: 1;
}
/* line 55, ../sass/layouts/_not-front-globals.scss */
.not-front #page #hero-banner .block__title {
  display: none;
}
/* line 59, ../sass/layouts/_not-front-globals.scss */
.not-front #page #hero-banner .flex-active-slide {
  position: relative;
}
/* line 62, ../sass/layouts/_not-front-globals.scss */
.not-front #page #hero-banner .flex-active-slide .page-inner {
  margin-top: -20%;
  position: relative;
  text-align: right !important;
  z-index: 2;
  max-width: 1200px;
}
/* line 70, ../sass/layouts/_not-front-globals.scss */
.not-front #page #hero-banner .flex-active-slide .page-inner .block__title {
  color: #82047d;
  display: block;
  font-weight: 400;
  margin: 0 0 0 750px;
  text-align: left;
}
/* line 78, ../sass/layouts/_not-front-globals.scss */
.not-front #page #hero-banner .flex-active-slide .page-inner p {
  color: #000;
  max-width: 320px;
  line-height: 1.2em;
  text-align: left;
  margin: 5px 0 20px 753px;
  color: #fff;
}
/* line 87, ../sass/layouts/_not-front-globals.scss */
.not-front #page #hero-banner .flex-active-slide .page-inner a {
  color: #fff;
  background-color: #82047d;
  padding: 5px 20px 6px;
  border-radius: 15px;
}
@media screen and (max-width: 480px) {
  /* line 101, ../sass/layouts/_not-front-globals.scss */
  .not-front #page #hero-banner .block__title {
    font-size: 1.2em;
    font-weight: bold;
  }
}
/* line 109, ../sass/layouts/_not-front-globals.scss */
.not-front .clear-slide {
  padding-top: 0px;
  margin-bottom: -160px;
}
/* line 114, ../sass/layouts/_not-front-globals.scss */
.not-front #page #main {
  padding-top: 160px;
}
/* line 117, ../sass/layouts/_not-front-globals.scss */
.not-front #page #main.no-top-padding {
  padding-top: 0px;
}
/* line 121, ../sass/layouts/_not-front-globals.scss */
.not-front #page #main .landing-page {
  padding-top: 0px;
}

@media all and (max-width: 959px) {
  /* line 4, ../sass/layouts/_reiki-2col-stacked.scss */
  .layout-2col-stacked .left-column {
    float: none;
    clear: both;
  }
  /* line 9, ../sass/layouts/_reiki-2col-stacked.scss */
  .layout-2col-stacked .right-column {
    float: none;
    clear: both;
  }
  /* line 14, ../sass/layouts/_reiki-2col-stacked.scss */
  .layout-2col-stacked .columns-container {
    float: none;
    clear: both;
  }
}
@media all and (min-width: 960px) {
  /* line 24, ../sass/layouts/_reiki-2col-stacked.scss */
  .layout-2col-stacked .top-wrapper,
  .layout-2col-stacked .bottom-wrapper {
    float: none;
    clear: both;
    margin: 8px 0;
  }
  /* line 31, ../sass/layouts/_reiki-2col-stacked.scss */
  .layout-2col-stacked .left-column {
    float: left;
    width: 24%;
  }
  /* line 36, ../sass/layouts/_reiki-2col-stacked.scss */
  .layout-2col-stacked .right-column {
    float: right;
    width: 74%;
  }
  /* line 41, ../sass/layouts/_reiki-2col-stacked.scss */
  .layout-2col-stacked .content-wrapper {
    float: none;
    clear: both;
  }
  /* line 45, ../sass/layouts/_reiki-2col-stacked.scss */
  .layout-2col-stacked .content-wrapper:after {
    display: block;
    content: " ";
    float: none;
    clear: both;
    width: 100%;
  }
  /* line 54, ../sass/layouts/_reiki-2col-stacked.scss */
  .layout-2col-stacked .columns-container {
    float: left;
    clear: both;
    width: 100%;
  }
}
/* line 34, ../sass/styles.scss */
body.page-classes #sidebar-left #block-menu-block-1 {
  display: none;
}

/* line 40, ../sass/styles.scss */
body.page-classes #page .region-sidebar-first h2.block__title {
  color: #4D4E52;
  font-size: 1.2em;
  margin-bottom: 0px;
}
/* line 46, ../sass/styles.scss */
body.page-classes #page .region-sidebar-first ul {
  padding: 0px;
  margin: 0px;
}
/* line 50, ../sass/styles.scss */
body.page-classes #page .region-sidebar-first ul li {
  font-size: 0.95em;
  list-style: none outside none;
  margin-right: 5px;
  padding: 5px 0px;
}

/* line 60, ../sass/styles.scss */
#content .pane-block-9,
#content .pane-block-10 {
  max-width: 49%;
  float: left;
  margin-right: 1%;
}
/* line 66, ../sass/styles.scss */
#content .pane-block-9 h2.block-title,
#content .pane-block-10 h2.block-title {
  display: none;
}
/* line 70, ../sass/styles.scss */
#content .pane-block-9 h4,
#content .pane-block-10 h4 {
  margin: 0px;
  padding: 10px 0px;
  line-height: normal;
}
/* line 76, ../sass/styles.scss */
#content .pane-block-9 iframe,
#content .pane-block-10 iframe {
  max-width: 100%;
}
/* line 80, ../sass/styles.scss */
#content .pane-block-9 p,
#content .pane-block-10 p {
  margin: 0px;
  padding: 0px;
}

/* line 89, ../sass/styles.scss */
body.page-node #page #main .more-link {
  display: none;
}
/* line 93, ../sass/styles.scss */
body.page-node #page #main.landing-page .more-link {
  display: block;
}
/* line 96, ../sass/styles.scss */
body.page-node #page #main.landing-page .more-link a::after {
  content: ' »';
}
/* line 100, ../sass/styles.scss */
body.page-node #page #main.landing-page .more-link .node-page.view-mode-full {
  border-bottom: 0px;
}
/* line 105, ../sass/styles.scss */
body.page-node #page #main .node-page.view-mode-full {
  border-bottom: 0px;
}

/* line 112, ../sass/styles.scss */
body.not-front.page-node #page #content .block-nodeblock h2.block-title, body.not-front.page-node #page #content .block-nodeblock h2.node-title {
  display: none;
}

/* line 117, ../sass/styles.scss */
body.not-front.page-node #page #content .block-nodeblock {
  float: left;
  display: inline-block;
  max-width: 300px;
  width: auto;
  margin-top: 0px;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  /* line 117, ../sass/styles.scss */
  body.not-front.page-node #page #content .block-nodeblock {
    max-width: unset;
  }
}
/* line 129, ../sass/styles.scss */
body.not-front.page-node #page #content .block-nodeblock img {
  height: auto;
  width: auto;
  max-width: 350px;
}
@media screen and (max-width: 960px) {
  /* line 129, ../sass/styles.scss */
  body.not-front.page-node #page #content .block-nodeblock img {
    height: auto;
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  /* line 129, ../sass/styles.scss */
  body.not-front.page-node #page #content .block-nodeblock img {
    width: 100%;
  }
}

/* line 147, ../sass/styles.scss */
body.section-i-want-find-reiki-practioner #page #main.landing-page .more-link, body.section-i-want-learn-how-teach-reiki #page #main.landing-page .more-link, body.section-i-want-build-my-reiki-business #page #main.landing-page .more-link, body.section-i-want-advance-my-reiki-training #page #main.landing-page .more-link {
  display: none;
}

/* line 153, ../sass/styles.scss */
body.section-i-want-find-reiki-practioner #page #main.landing-page .view-practitioner-listing .more-link {
  display: block;
}

/*
  Custom Image with caption
 */
/* line 160, ../sass/styles.scss */
.media-image_with_caption_align_left {
  float: left;
  width: 240px;
  padding: 10px;
  border: 1px solid #cccccc;
  margin-right: 10px;
}
/* line 166, ../sass/styles.scss */
.media-image_with_caption_align_left a {
  display: block;
}

/* line 170, ../sass/styles.scss */
.media-image_with_caption_align_right {
  float: right;
  padding: 0.5em;
  border: 1px solid #cccccc;
  margin-left: 0.5em;
}
/* line 175, ../sass/styles.scss */
.media-image_with_caption_align_right a {
  display: block;
}

/* Landing Page Block Views */
/* line 182, ../sass/styles.scss */
.landing-page .block-views .views-row {
  padding: 5px 0px;
}

/*
  Page Styling
 */
/* line 189, ../sass/styles.scss */
#page {
  /* -- end homepage styles --*/
  /*
    Content area styles
  */
  /*
    Base views styles
  */
  /*
    Node styles
  */
  /*
    Landing Pages
  */
  /*
    Article nodes
  */
  /* -- Author Profile (left-sidebar block) --*/
  /*
    End Article node styles
  */
  /*
    Story nodes
  */
  /*
    End Story node styles
  */
  /*
    Class node styles
  */
}
/* line 2, ../sass/pages/_home.scss */
#page #block-wrapper {
  margin-top: -20px;
  overflow: hidden;
}
/* line 6, ../sass/pages/_home.scss */
#page #block-wrapper h2, #page #block-wrapper h3 {
  color: #444;
  margin: 0px;
  line-height: normal;
  margin-bottom: 20px;
}
/* line 13, ../sass/pages/_home.scss */
#page #block-wrapper p {
  padding: 0px;
  margin: 0px;
}
/* line 17, ../sass/pages/_home.scss */
#page #block-wrapper p a::after {
  content: ' »';
}
/* line 24, ../sass/pages/_home.scss */
#page #block-wrapper .block-row.row-1 {
  text-align: center;
  margin-top: 0px;
  padding-bottom: 10px;
}
/* line 29, ../sass/pages/_home.scss */
#page #block-wrapper .block-row.row-1 h2 {
  font-size: 2em;
  font-weight: 200;
}
/* line 34, ../sass/pages/_home.scss */
#page #block-wrapper .block-row.row-1 a {
  color: #d53900;
}
/* line 37, ../sass/pages/_home.scss */
#page #block-wrapper .block-row.row-1 a:hover {
  color: #666;
}
/* line 42, ../sass/pages/_home.scss */
#page #block-wrapper .block-row.row-1 ul {
  max-width: 700px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  /* line 42, ../sass/pages/_home.scss */
  #page #block-wrapper .block-row.row-1 ul {
    margin: 0 auto 30px;
    width: 100%;
  }
}
/* line 51, ../sass/pages/_home.scss */
#page #block-wrapper .block-row.row-1 ul li {
  display: inline;
  margin: 0px 22px 0px 22px;
  color: #b4b2b2;
}
@media screen and (max-width: 768px) {
  /* line 51, ../sass/pages/_home.scss */
  #page #block-wrapper .block-row.row-1 ul li {
    color: #b4b2b2;
    display: block;
    float: left;
    margin: 0 22px;
    text-align: left;
    width: 100%;
  }
}
/* line 71, ../sass/pages/_home.scss */
#page #block-wrapper .block-row {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 75, ../sass/pages/_home.scss */
#page #block-wrapper .block-row .inner-block {
  margin: 0;
}
/* line 78, ../sass/pages/_home.scss */
#page #block-wrapper .block-row .inner-block.column {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  float: left;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (min-width: 769px) {
  /* line 78, ../sass/pages/_home.scss */
  #page #block-wrapper .block-row .inner-block.column {
    width: 25%;
  }
}
/* line 94, ../sass/pages/_home.scss */
#page #block-wrapper .block-row .inner-block .block,
#page #block-wrapper .block-row .inner-block .field-name-body {
  margin-bottom: 0;
}
/* line 103, ../sass/pages/_home.scss */
#page #block-wrapper .block-row .column {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  /* line 110, ../sass/pages/_home.scss */
  #page #block-wrapper .block-row:not(:last-child) {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  /* line 116, ../sass/pages/_home.scss */
  #page #block-wrapper .block-row .column {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  /* line 121, ../sass/pages/_home.scss */
  #page #block-wrapper .block-row .column:not(:last-child) {
    border-right: 1px solid #ccc;
  }
}
/* line 129, ../sass/pages/_home.scss */
#page #block-wrapper .row-1 {
  display: none;
}
/* line 134, ../sass/pages/_home.scss */
#page #block-wrapper .column {
  text-align: center;
}
/* line 139, ../sass/pages/_home.scss */
#page #block-wrapper .row-2 .column.b,
#page #block-wrapper .row-3 .column.b {
  text-align: left;
}
/* line 143, ../sass/pages/_home.scss */
#page #block-wrapper .row-2 .column.b h2,
#page #block-wrapper .row-3 .column.b h2 {
  text-align: center;
}
/* line 147, ../sass/pages/_home.scss */
#page #block-wrapper .row-2 .column.b img,
#page #block-wrapper .row-3 .column.b img {
  width: 50%;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  /* line 139, ../sass/pages/_home.scss */
  #page #block-wrapper .row-2 .column.b,
  #page #block-wrapper .row-3 .column.b {
    width: 50%;
  }
  /* line 156, ../sass/pages/_home.scss */
  #page #block-wrapper .row-2 .column.b h2,
  #page #block-wrapper .row-3 .column.b h2 {
    text-align: left;
  }
  /* line 160, ../sass/pages/_home.scss */
  #page #block-wrapper .row-2 .column.b img,
  #page #block-wrapper .row-3 .column.b img {
    max-width: 180px;
    float: left;
    padding-right: 20px;
  }
}
@media screen and (min-width: 769px) {
  /* line 171, ../sass/pages/_home.scss */
  #page #block-wrapper .row-3 .column.b img {
    max-width: 180px;
    float: right;
    padding-left: 20px;
    padding-right: 0;
  }
}
/* line 184, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 {
  width: 100%;
  background-color: #F8F8F8;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 25px 0px 50px 0px;
}
/* line 191, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 h2 {
  font-size: 2em;
  font-weight: 200;
  color: #D83900;
  margin-bottom: 25px;
}
/* line 198, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 .views-row {
  width: 31%;
  float: left;
  border: 1px solid #ccc;
  padding-bottom: 15px;
  margin: 0 1%;
}
/* line 205, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 .views-row img {
  padding: 0px;
  float: none;
}
/* line 210, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 .views-row.views-row-2 {
  margin: 0px 5px 0px 5px;
}
/* line 214, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 .views-row .views-field-title, #page #home-lower-content-row-1 .views-row .views-field-field-article-teaser, #page #home-lower-content-row-1 .views-row .views-field-created {
  margin: 0px 20px 0px 20px;
}
/* line 218, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 .views-row .views-field-title {
  margin-top: 5px;
}
/* line 222, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 .views-row .views-field-title a, #page #home-lower-content-row-1 .views-row .views-field-created, #page #home-lower-content-row-1 .views-row .views-field-created a {
  color: #D53900;
}
/* line 228, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 .views-row .views-field-title a:hover, #page #home-lower-content-row-1 .views-row .views-field-created .field-content a:hover {
  color: #666;
}
/* line 233, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 .views-row .views-field-title a {
  font-size: 1.1em;
}
/* line 237, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 .views-row .views-field-created, #page #home-lower-content-row-1 .views-row .views-field-field-article-teaser {
  font-size: .85em;
}
/* line 243, ../sass/pages/_home.scss */
#page #home-lower-content-row-1 .views-row .views-field-body p {
  margin-top: 5px;
  color: #444;
}
/* line 252, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 {
  margin: 10px 0px 20px 0px;
  float: left;
  width: 100%;
}
/* line 257, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 h2 {
  font-weight: 400;
  color: #444;
}
/* line 263, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 p a::after {
  content: ' »';
}
/* line 268, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content {
  margin: 0px;
}
/* line 271, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content .view-header {
  float: left;
  padding: 0 3% 0 0px;
}
/* line 275, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content .view-header p {
  font-size: 1em;
}
/* line 278, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content .view-header p a {
  text-transform: uppercase;
}
/* line 284, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content .view-content {
  float: left;
  width: 70%;
  border: none;
}
/* line 290, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content .views-row {
  width: 36%;
  margin-right: 10%;
}
/* line 294, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content .views-row h2 {
  font-size: 1.1em;
}
/* line 297, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content .views-row h2 a {
  color: #d83900;
}
/* line 300, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content .views-row h2 a:hover {
  color: #666;
}
/* line 307, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content .views-row-1 {
  border-right: 1px solid #CCCCCC;
}
/* line 311, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content .views-row-last {
  border: none;
}
/* line 315, ../sass/pages/_home.scss */
#page #home-lower-content-row-2 .view-homepage-dynamic-content p {
  max-width: 260px;
  font-size: 0.85em;
}
/* line 327, ../sass/pages/_home.scss */
#page #home-lower-content-row-3 .block-nodeblock {
  display: inline-block;
  width: 30%;
  text-align: center;
  margin: 0 0 0 3%;
  min-height: 370px;
}
/* line 334, ../sass/pages/_home.scss */
#page #home-lower-content-row-3 .block-nodeblock .node {
  display: table;
}
/* line 337, ../sass/pages/_home.scss */
#page #home-lower-content-row-3 .block-nodeblock .node .content {
  display: table-cell;
  vertical-align: top;
}
/* line 344, ../sass/pages/_home.scss */
#page #home-lower-content-row-3 h3 {
  color: #444;
  margin: 0px;
  line-height: normal;
  margin-bottom: 20px;
}
/* line 351, ../sass/pages/_home.scss */
#page #home-lower-content-row-3 p {
  font-size: 0.85em;
  margin-left: auto;
  margin-right: auto;
  max-width: 200px;
  margin-top: 5px;
}
/* line 358, ../sass/pages/_home.scss */
#page #home-lower-content-row-3 p a::after {
  content: ' »';
}
@media screen and (max-width: 768px) {
  /* line 367, ../sass/pages/_home.scss */
  #page #home-lower-content-wrapper {
    background: none;
  }
  /* line 371, ../sass/pages/_home.scss */
  #page #home-lower-content-row-1 {
    width: 99%;
    padding: 0px 0px 0px 0px;
  }
  /* line 381, ../sass/pages/_home.scss */
  #page #home-lower-content-row-2 .view-homepage-dynamic-content .view-content {
    width: 50%;
  }
  /* line 387, ../sass/pages/_home.scss */
  #page #home-lower-content-row-3 {
    padding-bottom: 0px;
  }
  /* line 391, ../sass/pages/_home.scss */
  #page #home-lower-content-row-3 .block-nodeblock {
    margin: 0 0 0 2%;
  }
}
@media screen and (max-width: 600px) {
  /* line 402, ../sass/pages/_home.scss */
  #page #home-lower-content-row-1 h2 {
    text-align: center;
  }
  /* line 406, ../sass/pages/_home.scss */
  #page #home-lower-content-row-1 .views-row {
    width: 80%;
    float: none;
    border: 1px solid #ccc;
    padding-bottom: 0px !important;
    margin: 0 auto 10px auto !important;
  }
  /* line 413, ../sass/pages/_home.scss */
  #page #home-lower-content-row-1 .views-row img {
    padding: 0px;
    float: none;
    width: 100%;
  }
  /* line 425, ../sass/pages/_home.scss */
  #page #home-lower-content-row-2 .view-homepage-dynamic-content .view-header {
    width: 80%;
    margin-left: 10%;
    border-bottom: 1px solid #cccccc;
  }
  /* line 432, ../sass/pages/_home.scss */
  #page #home-lower-content-row-2 .view-homepage-dynamic-content .view-content {
    width: 99%;
  }
  /* line 437, ../sass/pages/_home.scss */
  #page #home-lower-content-row-2 .view-homepage-dynamic-content .views-row {
    width: 80%;
    margin-left: 10%;
    padding-left: 0px;
    border-bottom: 0px solid #cccccc;
    border-right: 0px;
  }
  /* line 447, ../sass/pages/_home.scss */
  #page #home-lower-content-row-3 {
    padding-bottom: 0px;
  }
  /* line 451, ../sass/pages/_home.scss */
  #page #home-lower-content-row-3 .block-nodeblock {
    width: 80%;
    margin: 0 0 0 10% !important;
    text-align: center !important;
    border-top: 1px solid #cccccc;
    min-height: 300px;
  }
  /* line 459, ../sass/pages/_home.scss */
  #page #home-lower-content-row-3 .block-nodeblock .node {
    margin: 0 auto 0 auto !important;
  }
  /* line 464, ../sass/pages/_home.scss */
  #page #home-lower-content-row-3 .block-nodeblock #node-147 {
    padding-top: 20px;
  }
}
/* line 199, ../sass/styles.scss */
#page .page__title {
  margin-bottom: 30px;
}
/* line 9, ../sass/components/_baseviews.scss */
#page .views-exposed-form .views-exposed-widget .form-submit {
  background-color: #81037c;
  border: medium none;
  border-radius: 15px;
  color: #fff;
  margin-top: 1.5em;
  padding: 3px 18px;
}
/* line 18, ../sass/components/_baseviews.scss */
#page .views-exposed-form .views-exposed-widget .form-type-textfield input {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100% !important;
}
/* line 33, ../sass/components/_baseviews.scss */
#page .views-row .node-teaser img {
  float: left;
  padding: 10px 30px 10px 0px;
}
/* line 39, ../sass/components/_baseviews.scss */
#page .views-row p {
  margin-top: 5px;
}
/* line 42, ../sass/components/_baseviews.scss */
#page .views-row p a {
  color: #83007E;
}
/* line 48, ../sass/components/_baseviews.scss */
#page .views-row span a {
  color: #83007E;
}
/* line 58, ../sass/components/_baseviews.scss */
#page .views-field-title span a {
  color: #424242;
}
/* line 64, ../sass/components/_baseviews.scss */
#page .field-name-node-type {
  float: left;
  margin-right: 5px;
}
/* line 68, ../sass/components/_baseviews.scss */
#page .field-name-node-type .views-label {
  color: #d53900;
  font-size: 0.85em;
}
/* line 73, ../sass/components/_baseviews.scss */
#page .field-name-node-type p {
  margin: 0;
  display: inline-block;
}
/* line 79, ../sass/components/_baseviews.scss */
#page .views-field-type {
  color: #D53900;
  margin-right: 5px;
  font-weight: bold;
  font-size: 0.85em;
}
/* line 86, ../sass/components/_baseviews.scss */
#page .views-field-changed, #page .field-name-post-date {
  color: #D53900;
  font-size: 0.85em;
}
/* line 91, ../sass/components/_baseviews.scss */
#page .field-name-post-date {
  margin-bottom: 5px;
}
/* line 95, ../sass/components/_baseviews.scss */
#page .field-name-field-resource-teaser, #page .field-name-field-article-teaser, #page .field-name-field-story-teaser, #page .views-field-field-resource-teaser, #page .views-field-field-story-teaser, #page .views-field-field-article-teaser {
  color: #444;
}
@media screen and (max-width: 768px) {
  /* line 100, ../sass/components/_baseviews.scss */
  #page .views-exposed-form {
    position: relative;
  }
  /* line 105, ../sass/components/_baseviews.scss */
  #page .views-exposed-form .views-exposed-widget .form-item {
    position: relative;
    width: 100%;
    display: block !important;
    min-width: unset;
  }
  /* line 112, ../sass/components/_baseviews.scss */
  #page .views-exposed-form .views-exposed-widget .form-item .form-submit {
    background-color: #81037c;
    border: medium none;
    border-radius: 15px;
    color: #fff;
    margin-top: 1.6em;
    padding: 3px 15px;
  }
  /* line 121, ../sass/components/_baseviews.scss */
  #page .views-exposed-form .views-exposed-widget .form-item .form-type-textfield input {
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 612px;
  }
}
@media screen and (max-width: 480px) {
  /* line 135, ../sass/components/_baseviews.scss */
  #page .views-row img {
    width: 100%;
  }
}
/* line 211, ../sass/styles.scss */
#page .heading2, #page .heading3, #page .heading4 {
  margin-bottom: 5px;
}
/* line 221, ../sass/styles.scss */
#page .node-page.view-mode-full {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
/* line 228, ../sass/styles.scss */
#page .field-name-field-add-select-articles-to-thi {
  margin: 0px;
}
/* line 231, ../sass/styles.scss */
#page .field-name-field-add-select-articles-to-thi .field-label {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
/* line 237, ../sass/styles.scss */
#page .field-name-field-add-select-articles-to-thi a::before {
  content: 'By ';
}
/* line 242, ../sass/styles.scss */
#page .field-name-field-add-select-articles-to-thi h2 a::before {
  content: '';
}
/* line 246, ../sass/styles.scss */
#page .field-name-field-add-select-articles-to-thi .username {
  display: block;
}
/* line 252, ../sass/styles.scss */
#page .field-name-field-add-select-articles-to-thi .field-item div {
  margin-bottom: 25px;
  color: #444;
}
/* line 265, ../sass/styles.scss */
#page .author-pane .picture {
  float: none;
  padding-left: 0;
  width: 180px;
}
/* line 270, ../sass/styles.scss */
#page .author-pane .picture img {
  width: 100%;
}
/* line 275, ../sass/styles.scss */
#page a.authorlink {
  color: #82047d;
}
/* line 279, ../sass/styles.scss */
#page .author-bio {
  margin: 0px;
  padding: 0px;
  font-size: 0.85em;
  line-height: 1.5em;
}
/* line 286, ../sass/styles.scss */
#page .field-name-body, #page .field-name-field-media, #page .field-name-field-footnotes, #page .field-name-field-copyright-info {
  margin-bottom: 25px;
  color: #444;
}
/* line 290, ../sass/styles.scss */
#page .field-name-body .field-label, #page .field-name-field-media .field-label, #page .field-name-field-footnotes .field-label, #page .field-name-field-copyright-info .field-label {
  color: #525352;
}
/* line 303, ../sass/styles.scss */
#page .field-name-field-story-author-name, #page .field-name-field-story-author-email, #page .field-name-field-story-location {
  margin-bottom: 10px;
}
/* line 317, ../sass/styles.scss */
#page .node-class .label-above {
  font-weight: bold;
  margin-top: 15px;
}
/* line 322, ../sass/styles.scss */
#page .node-class p {
  margin: 10px 0px 10px 0px;
}
/* line 326, ../sass/styles.scss */
#page .node-class .commerce-add-to-cart {
  margin-bottom: 50px;
}
/* line 331, ../sass/styles.scss */
#page .region-bottom {
  max-width: 100%;
  width: 100%;
}

/* line 341, ../sass/styles.scss */
.front #page #hero-banner img {
  width: auto;
  margin: 0 auto;
}

/* -- Article Photo Gallery --*/
/* line 348, ../sass/styles.scss */
.node-type-article .flexslider {
  background-color: #eee;
  display: table;
  text-align: center;
  height: auto;
}

/* line 355, ../sass/styles.scss */
.node-type-article .flexslider .slides {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

/* line 361, ../sass/styles.scss */
.node-type-article .flexslider .slides img {
  width: auto;
  margin: auto;
}
@media screen and (max-width: 600px) {
  /* line 361, ../sass/styles.scss */
  .node-type-article .flexslider .slides img {
    width: 100%;
  }
}

/* line 369, ../sass/styles.scss */
.node-type-article #block-views-gallery-block .views-field-title {
  display: block;
  opacity: 0.8;
  padding: 5px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: auto;
  text-align: left;
}

/* line 380, ../sass/styles.scss */
.pane-user-masquerade {
  text-align: right;
  margin-bottom: 16px;
}

/* line 385, ../sass/styles.scss */
.agreement-reader {
  max-height: 400px;
  padding: 20px;
  overflow-y: scroll;
}
/* line 390, ../sass/styles.scss */
.agreement-reader .node-page.view-mode-full {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

/*
 * administer membership page
 */
/* line 402, ../sass/styles.scss */
.page-user-admin-membership form .fieldset-description {
  color: #444;
  margin-bottom: 16px;
}
/* line 409, ../sass/styles.scss */
.page-user-admin-membership form .form-item-expires-date-date .description {
  display: none;
}
/* line 416, ../sass/styles.scss */
.page-user-admin-membership .view-reiki-membership-user-overview .views-field {
  display: flex;
}
/* line 420, ../sass/styles.scss */
.page-user-admin-membership .view-reiki-membership-user-overview .field-content {
  border: 1px solid transparent;
}
/* line 424, ../sass/styles.scss */
.page-user-admin-membership .view-reiki-membership-user-overview .views-label {
  font-weight: bold;
  display: inline-block;
  text-align: right;
  min-width: 300px;
  padding-right: 12px;
}
/* line 432, ../sass/styles.scss */
.page-user-admin-membership .view-reiki-membership-user-overview ul, .page-user-admin-membership .view-reiki-membership-user-overview ol {
  margin: 0;
  list-style: none;
}
/* line 440, ../sass/styles.scss */
.page-user-admin-membership .view-reiki-membership-user-overview .do-not-list-1 .views-field-field-do-not-list-membership .field-content {
  padding: 0 6px;
  background: #fef5f1;
  color: #8c2e0b;
  border: 1px solid #ed541d;
}
/* line 450, ../sass/styles.scss */
.page-user-admin-membership .view-reiki-membership-user-overview .licensed-teacher-1 .views-field-field-licensed-teacher .field-content {
  padding: 0 6px;
  background: #f8fff0;
  color: #234600;
  border: 1px solid #be7;
}

/* line 1, ../sass/components/sidebar-first/_sbf-facetblock.scss */
.block-facetapi {
  padding: 0;
  margin: 0 0 10px 0;
  border-radius: 5px;
}
/* line 8, ../sass/components/sidebar-first/_sbf-facetblock.scss */
.block-facetapi h2.block-title {
  color: #4D4E52 !important;
  font-size: 1.2em !important;
  padding: 10px 0;
  border-bottom: 1px solid #D8D8D8;
}
/* line 16, ../sass/components/sidebar-first/_sbf-facetblock.scss */
.block-facetapi ul {
  padding: 0;
  margin: 0;
}
/* line 19, ../sass/components/sidebar-first/_sbf-facetblock.scss */
.block-facetapi ul li {
  list-style-type: none;
}
/* line 21, ../sass/components/sidebar-first/_sbf-facetblock.scss */
.block-facetapi ul li a {
  padding: 0 !important;
}

/*
    Left-Column styles
*/
@media screen and (max-width: 768px) {
  /* line 7, ../sass/layouts/_sidebar-first.scss */
  #sidebar-left {
    display: none;
  }
}
/* line 12, ../sass/layouts/_sidebar-first.scss */
#mobile-sidebar-moved {
  clear: left;
}

@media screen and (min-width: 768px) {
  /* line 18, ../sass/layouts/_sidebar-first.scss */
  #mobile-sidebar-moved {
    display: none;
  }
}
/* line 28, ../sass/layouts/_sidebar-first.scss */
.region-sidebar-first {
  width: 200px;
  padding-right: 0;
  padding-left: 0;
  /*
      Secondary Menu styles
  */
  /*
    Flexblock styles (sidebar)
  */
  /*
    FAQs block (sidebar)
  */
  /*
    Popular Products + Karuna Products (sidebar)
  */
  /*
    end Popular Products styles
  */
  /*
    Recent Resources (sidebar)
  */
  /*
    Profile Spotlight styles
  */
}
/* line 34, ../sass/layouts/_sidebar-first.scss */
.region-sidebar-first h2 {
  color: #4D4E52;
  font-size: 1.2em;
}
/* line 38, ../sass/layouts/_sidebar-first.scss */
.region-sidebar-first h2.block__title {
  color: #D63A00;
  font-size: 0.95em;
  font-weight: normal;
  margin-bottom: 10px;
  text-transform: uppercase;
}
/* line 46, ../sass/layouts/_sidebar-first.scss */
.region-sidebar-first h2.views-field-title {
  font-size: 0.6em;
}
/* line 51, ../sass/layouts/_sidebar-first.scss */
.region-sidebar-first a {
  color: #4D4E52;
}
/* line 54, ../sass/layouts/_sidebar-first.scss */
.region-sidebar-first a:hover {
  color: #000;
}
/* line 58, ../sass/layouts/_sidebar-first.scss */
.region-sidebar-first .block, .region-sidebar-first input {
  max-width: 200px;
}
/* line 6, ../sass/components/sidebar-first/_secondarymenu.scss */
.region-sidebar-first ul.menu {
  padding: 0 !important;
  margin: 0;
  line-height: 1.1em;
  border-radius: 5px;
}
/* line 12, ../sass/components/sidebar-first/_secondarymenu.scss */
.region-sidebar-first ul.menu li {
  border-bottom: 1px solid #EDE9E9;
  font-size: 0.95em;
  list-style: none outside none;
  margin-right: 0 !important;
  padding: 0 !important;
  position: relative;
}
/* line 20, ../sass/components/sidebar-first/_secondarymenu.scss */
.region-sidebar-first ul.menu li a {
  display: block;
  padding: 10px 10px 10px 30px !important;
}
/* line 24, ../sass/components/sidebar-first/_secondarymenu.scss */
.region-sidebar-first ul.menu li a:before {
  content: " ";
  display: block;
  position: absolute;
  left: 15px;
  top: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #aaa;
}
/* line 35, ../sass/components/sidebar-first/_secondarymenu.scss */
.region-sidebar-first ul.menu li a:hover {
  background: #EDE9E9;
  text-decoration: none;
}
/* line 41, ../sass/components/sidebar-first/_secondarymenu.scss */
.region-sidebar-first ul.menu li.last {
  border: none;
}
/* line 53, ../sass/components/sidebar-first/_secondarymenu.scss */
.region-sidebar-first ul.menu .is-active {
  font-weight: bold;
  font-size: 0.875em;
}
/* line 59, ../sass/components/sidebar-first/_secondarymenu.scss */
.region-sidebar-first ul.menu ul.menu {
  padding-bottom: 0 !important;
  padding-right: 0 !important;
}
/* line 62, ../sass/components/sidebar-first/_secondarymenu.scss */
.region-sidebar-first ul.menu ul.menu li {
  margin-right: 0 !important;
  margin-left: 20px;
}
/* line 65, ../sass/components/sidebar-first/_secondarymenu.scss */
.region-sidebar-first ul.menu ul.menu li a:before {
  border-radius: 0;
}
/* line 71, ../sass/components/sidebar-first/_secondarymenu.scss */
.region-sidebar-first ul.menu ul.menu li {
  border-top: 1px solid #EDE9E9;
}
@media screen and (max-width: 768px) {
  /* line 78, ../sass/components/sidebar-first/_secondarymenu.scss */
  .region-sidebar-first ul.menu {
    width: 98% !important;
    display: block !important;
    float: none !important;
  }
  /* line 84, ../sass/components/sidebar-first/_secondarymenu.scss */
  .region-sidebar-first ul.menu li {
    width: 98%;
  }
}
/* line 5, ../sass/components/sidebar-first/_sbf-flexblock.scss */
.region-sidebar-first .block-nodeblock .node-flex-block {
  position: relative;
  margin: 0px;
}
/* line 10, ../sass/components/sidebar-first/_sbf-flexblock.scss */
.region-sidebar-first .block-nodeblock .node-flex-block h2 {
  display: none;
}
/* line 14, ../sass/components/sidebar-first/_sbf-flexblock.scss */
.region-sidebar-first .block-nodeblock .node-flex-block .flexblock-content {
  margin: 0px;
  padding: 0px;
  line-height: .8em;
}
/* line 19, ../sass/components/sidebar-first/_sbf-flexblock.scss */
.region-sidebar-first .block-nodeblock .node-flex-block .flexblock-content a {
  color: #fff;
}
/* line 24, ../sass/components/sidebar-first/_sbf-flexblock.scss */
.region-sidebar-first .block-nodeblock .node-flex-block .flexblock-title {
  position: absolute;
  z-index: 1;
  bottom: 0px;
  padding: 10px 0px;
  line-height: 1.2em;
  font-size: 0.8em;
}
/* line 33, ../sass/components/sidebar-first/_sbf-flexblock.scss */
.region-sidebar-first .block-nodeblock .node-flex-block .overlay {
  width: 100%;
  background-color: #DDA54E;
  /*opacity: 0.9;*/
  max-width: 350px;
}
/* line 40, ../sass/components/sidebar-first/_sbf-flexblock.scss */
.region-sidebar-first .block-nodeblock .node-flex-block .overlay a {
  color: #fff;
}
/* line 45, ../sass/components/sidebar-first/_sbf-flexblock.scss */
.region-sidebar-first .block-nodeblock .node-flex-block .overlay-text {
  display: block;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  /* line 54, ../sass/components/sidebar-first/_sbf-flexblock.scss */
  .region-sidebar-first .block-nodeblock {
    width: 60% !important;
    display: block !important;
    float: none !important;
    position: relative !important;
    max-width: 390px !important;
    min-width: 350px !important;
    margin: 20px auto 20px auto !important;
  }
  /* line 65, ../sass/components/sidebar-first/_sbf-flexblock.scss */
  .region-sidebar-first .block-nodeblock h2 {
    display: none;
  }
  /* line 71, ../sass/components/sidebar-first/_sbf-flexblock.scss */
  .region-sidebar-first .block-nodeblock .node-flex-block {
    padding: 0px !important;
    margin: 0px !important;
    max-width: 350px;
  }
  /* line 78, ../sass/components/sidebar-first/_sbf-flexblock.scss */
  .region-sidebar-first .block-nodeblock img {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  /* line 90, ../sass/components/sidebar-first/_sbf-flexblock.scss */
  .region-sidebar-first .block-nodeblock {
    min-width: 80% !important;
    display: block;
    float: left;
    margin: 0 0 20px 10%;
  }
}
/* line 5, ../sass/components/sidebar-first/_sbf-faqsblock.scss */
.region-sidebar-first #block-views-faqs-block-block, .region-sidebar-first .view-faqs-block {
  margin: 0px 0px 30px 0px;
  /* border: 1px solid #d8d8d8;
    border-radius: 5px; */
  padding: 0px;
}
/* line 11, ../sass/components/sidebar-first/_sbf-faqsblock.scss */
.region-sidebar-first #block-views-faqs-block-block .views-row, .region-sidebar-first .view-faqs-block .views-row {
  margin: 0px;
  padding: 0px;
  float: none;
}
/* line 16, ../sass/components/sidebar-first/_sbf-faqsblock.scss */
.region-sidebar-first #block-views-faqs-block-block .views-row h2, .region-sidebar-first .view-faqs-block .views-row h2 {
  margin: 0px 0px 5px 0px;
  padding: 0px;
}
/* line 22, ../sass/components/sidebar-first/_sbf-faqsblock.scss */
.region-sidebar-first #block-views-faqs-block-block .views-row-last, .region-sidebar-first .view-faqs-block .views-row-last {
  margin-bottom: 30px;
}
/* line 4, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
.region-sidebar-first .view-popular-products,
.region-sidebar-first .view-karuna-products {
  width: 100%;
  max-width: 200px;
}
/* line 9, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
.region-sidebar-first .view-popular-products .views-row,
.region-sidebar-first .view-karuna-products .views-row {
  float: none;
  position: relative;
  margin: 0px 0px 30px 0px;
  padding: 0px;
}
/* line 16, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
.region-sidebar-first .view-popular-products .flexblock-content,
.region-sidebar-first .view-karuna-products .flexblock-content {
  margin: 0px;
  padding: 0px;
  line-height: .8em;
}
/* line 21, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
.region-sidebar-first .view-popular-products .flexblock-content a,
.region-sidebar-first .view-karuna-products .flexblock-content a {
  color: #fff;
}
/* line 26, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
.region-sidebar-first .view-popular-products img,
.region-sidebar-first .view-karuna-products img {
  float: none;
  padding: 0px;
}
/* line 31, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
.region-sidebar-first .view-popular-products .product-title,
.region-sidebar-first .view-karuna-products .product-title {
  position: absolute;
  z-index: 1;
  bottom: 0px;
  line-height: 1.2em;
  font-size: 0.8em;
}
/* line 39, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
.region-sidebar-first .view-popular-products .overlay,
.region-sidebar-first .view-karuna-products .overlay {
  width: 100%;
  background-color: #DDA54E;
  /*opacity: 0.9;*/
  color: #fff;
}
/* line 46, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
.region-sidebar-first .view-popular-products .overlay-text,
.region-sidebar-first .view-karuna-products .overlay-text {
  padding: 5px;
  display: block;
}
/* line 55, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
.region-sidebar-first .view-karuna-products .more-link {
  font-size: 14px;
}
/* line 58, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
.region-sidebar-first .view-karuna-downloads .views-field-title a {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  /* line 68, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
  .region-sidebar-first #block-views-popular-products-block h2,
  .region-sidebar-first #block-views-karuna-products-block-1 h2 {
    text-align: center;
  }
  /* line 74, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
  .region-sidebar-first .view-popular-products,
  .region-sidebar-first .view-karuna-products {
    max-width: 300px;
    margin: 0 auto 0 auto;
  }
  /* line 80, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
  .region-sidebar-first .view-popular-products img,
  .region-sidebar-first .view-karuna-products img {
    width: 100%;
  }
  /* line 84, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
  .region-sidebar-first .view-popular-products .overlay-text,
  .region-sidebar-first .view-karuna-products .overlay-text {
    padding: 15px 5px;
  }
}
/* line 90, ../sass/components/sidebar-first/_sbf-popularproductsblock.scss */
.region-sidebar-first .region-sidebar-first #block-views-karuna-downloads-block .views-field-title a {
  display: inline-block;
}
/* line 6, ../sass/components/sidebar-first/_sbf-recentresourcesblock.scss */
.region-sidebar-first .view-recent-resources {
  position: relative;
  z-index: 1;
  /* article nodes */
}
/* line 11, ../sass/components/sidebar-first/_sbf-recentresourcesblock.scss */
.region-sidebar-first .view-recent-resources .node-article {
  color: #d53900;
  font-weight: bold;
}
/* line 15, ../sass/components/sidebar-first/_sbf-recentresourcesblock.scss */
.region-sidebar-first .view-recent-resources .node-article .views-label-changed {
  color: #d53900;
  float: left;
  font-weight: bold;
  margin-right: 5px;
}
/* line 23, ../sass/components/sidebar-first/_sbf-recentresourcesblock.scss */
.region-sidebar-first .view-recent-resources .view-mode-sidebar_resources_teaser {
  color: #d53900;
  font-size: 0.9em;
}
/* line 27, ../sass/components/sidebar-first/_sbf-recentresourcesblock.scss */
.region-sidebar-first .view-recent-resources .view-mode-sidebar_resources_teaser .field-content {
  font-size: normal;
}
/* line 7, ../sass/components/sidebar-first/_sbf-profilespotlightblock.scss */
.region-sidebar-first #block-views-profile-spotlight-block {
  margin-top: 10px;
}
/* line 10, ../sass/components/sidebar-first/_sbf-profilespotlightblock.scss */
.region-sidebar-first #block-views-profile-spotlight-block h2.block__title {
  margin-bottom: 10px;
  padding: 0px;
}
/* line 15, ../sass/components/sidebar-first/_sbf-profilespotlightblock.scss */
.region-sidebar-first #block-views-profile-spotlight-block .views-row {
  margin: 0px;
  padding: 0px;
}
/* line 20, ../sass/components/sidebar-first/_sbf-profilespotlightblock.scss */
.region-sidebar-first #block-views-profile-spotlight-block img {
  padding: 0px;
  margin: 0px;
  float: none;
}
/* line 26, ../sass/components/sidebar-first/_sbf-profilespotlightblock.scss */
.region-sidebar-first #block-views-profile-spotlight-block .views-field-name {
  font-size: 0.9em;
}
/* line 30, ../sass/components/sidebar-first/_sbf-profilespotlightblock.scss */
.region-sidebar-first #block-views-profile-spotlight-block .views-field-field-position-title {
  color: #666;
  font-size: 0.9em;
  line-height: normal;
}
/* line 70, ../sass/layouts/_sidebar-first.scss */
.region-sidebar-first .views-row {
  border: none;
  padding-top: 0px;
}

@media screen and (max-width: 768px) {
  /* line 79, ../sass/layouts/_sidebar-first.scss */
  #mobile-sidebar-moved > .region-sidebar-first {
    width: 98%;
    margin: 0 !important;
    padding: 0 !important;
  }
  /* line 85, ../sass/layouts/_sidebar-first.scss */
  #mobile-sidebar-moved > .region-sidebar-first .block, #mobile-sidebar-moved > .region-sidebar-first input {
    max-width: none;
  }
  /* line 89, ../sass/layouts/_sidebar-first.scss */
  #mobile-sidebar-moved > .region-sidebar-first .region-sidebar-first {
    width: 100% !important;
  }
  /* line 93, ../sass/layouts/_sidebar-first.scss */
  #mobile-sidebar-moved > .region-sidebar-first #block-views-faqs-block-block {
    float: none !important;
    max-width: 300px !important;
    clear: both;
    margin: 0 auto;
  }
}
/* line 3, ../sass/layouts/_header.scss */
#responsive-header-wrapper {
  background: transparent url("../images/nav-bkgrnd.png") repeat-x center bottom;
}
@media screen and (min-width: 960px) {
  /* line 3, ../sass/layouts/_header.scss */
  #responsive-header-wrapper {
    display: none;
  }
}

/* line 10, ../sass/layouts/_header.scss */
#responsive-header {
  width: 100%;
  padding-top: 55px;
  text-align: center;
  position: relative;
}
/* line 16, ../sass/layouts/_header.scss */
#responsive-header #reiki-logo {
  background: transparent url("../images/logo-bkgrnd.png") no-repeat 0 -30px;
  width: 215px;
  height: 122px;
  margin: -27px auto;
  position: relative;
  z-index: 2;
}
/* line 25, ../sass/layouts/_header.scss */
#responsive-header #responsive-primary-navigation {
  text-align: left;
}
/* line 29, ../sass/layouts/_header.scss */
#responsive-header .menu-button {
  top: 65px;
  left: 10px;
  position: absolute;
  text-align: left;
  z-index: 2;
  background: transparent url("../images/menu-btn.png") no-repeat 0 0;
  padding: 8px;
  width: 40px;
  height: 40px;
  border: none;
}
/* line 41, ../sass/layouts/_header.scss */
#responsive-header .menu-button .touch-button {
  display: none;
}
/* line 45, ../sass/layouts/_header.scss */
#responsive-header .menu-button img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  /* line 50, ../sass/layouts/_header.scss */
  #responsive-header .menu-button {
    display: none;
  }
}
/* line 56, ../sass/layouts/_header.scss */
#responsive-header .buttons {
  bottom: 0;
  right: 16px;
  position: absolute;
}
/* line 61, ../sass/layouts/_header.scss */
#responsive-header .buttons .search-button,
#responsive-header .buttons .cart-button,
#responsive-header .buttons .login-button,
#responsive-header .buttons .logout-button {
  box-sizing: border-box;
  display: block;
  margin: 0 0 8px 8px;
  padding: 0;
  z-index: 3;
  width: 24px;
  height: 24px;
  background: transparent no-repeat 0 0 / contain;
}
/* line 74, ../sass/layouts/_header.scss */
#responsive-header .buttons .search-button img,
#responsive-header .buttons .cart-button img,
#responsive-header .buttons .login-button img,
#responsive-header .buttons .logout-button img {
  width: 100%;
}
/* line 79, ../sass/layouts/_header.scss */
#responsive-header .buttons .search-button {
  background-image: url("../images/search-btn.png");
}
/* line 83, ../sass/layouts/_header.scss */
#responsive-header .buttons .cart-button {
  background-image: url("../images/cart-btn.png");
}
/* line 87, ../sass/layouts/_header.scss */
#responsive-header .buttons .login-button {
  background-image: url("../images/login-btn.png");
}
/* line 91, ../sass/layouts/_header.scss */
#responsive-header .buttons .logout-button {
  background-image: url("../images/logout-btn.png");
}
@media screen and (min-width: 600px) {
  /* line 56, ../sass/layouts/_header.scss */
  #responsive-header .buttons {
    top: 72px;
    right: 12px;
  }
  /* line 99, ../sass/layouts/_header.scss */
  #responsive-header .buttons .search-button,
  #responsive-header .buttons .cart-button,
  #responsive-header .buttons .login-button,
  #responsive-header .buttons .logout-button {
    display: inline-block;
  }
}

@media screen and (min-width: 960px) {
  /* line 110, ../sass/layouts/_header.scss */
  #responsive-primary-navigation {
    display: none;
  }
}

/* line 118, ../sass/layouts/_header.scss */
#responsive-primary-navigation .flexnav li a {
  background-color: #fff8e2;
}
/* line 122, ../sass/layouts/_header.scss */
#responsive-primary-navigation .flexnav li ul li a {
  background-color: #fdf8ea;
  font-size: 0.85em;
  padding-left: 40px;
  line-height: 1em;
}

@media screen and (max-width: 959px) {
  /* line 132, ../sass/layouts/_header.scss */
  #header-wrap {
    display: none;
  }
}
/* line 137, ../sass/layouts/_header.scss */
#header-wrap a, #header-wrap a:visited {
  color: #525352;
  font-size: 110%;
}
/* line 142, ../sass/layouts/_header.scss */
#header-wrap a:hover {
  color: #444;
}
/* line 146, ../sass/layouts/_header.scss */
#header-wrap .active a {
  color: #81037C;
}
/* line 150, ../sass/layouts/_header.scss */
#header-wrap .is-active-trail a {
  color: #81037C;
}
/* line 154, ../sass/layouts/_header.scss */
#header-wrap #header {
  width: 100%;
  max-width: 980px;
  padding: 0;
}
/* line 159, ../sass/layouts/_header.scss */
#header-wrap #header ul {
  margin: 0;
  padding: 0;
}
/* line 163, ../sass/layouts/_header.scss */
#header-wrap #header ul li {
  float: left;
  margin-left: 15px;
  padding-right: 20px;
  border-right: 1px solid #EDE9E9;
  list-style: none;
}
/* line 170, ../sass/layouts/_header.scss */
#header-wrap #header ul li.last {
  border: none;
}
/* line 174, ../sass/layouts/_header.scss */
#header-wrap #header ul li ul {
  display: none;
}
/* line 180, ../sass/layouts/_header.scss */
#header-wrap #header #header-left {
  width: 380px;
  float: left;
}
/* line 185, ../sass/layouts/_header.scss */
#header-wrap #header #header-center {
  float: left;
  text-align: center;
  /*width:215px;*/
  width: 100%;
}
/* line 191, ../sass/layouts/_header.scss */
#header-wrap #header #header-center #reiki-logo {
  background: transparent url("../images/logo-bkgrnd.png") no-repeat 0 -30px;
  width: 215px;
  height: 125px;
  margin: -10px auto;
  position: relative;
  z-index: 2;
}
/* line 200, ../sass/layouts/_header.scss */
#header-wrap #header #header-center #block-menu-menu-primary-menu {
  position: absolute;
  top: 80px;
}
/* line 205, ../sass/layouts/_header.scss */
#header-wrap #header #header-center .menu li:nth-child(4) {
  margin-left: 400px;
}
@media screen and (max-width: 1100px) {
  /* line 205, ../sass/layouts/_header.scss */
  #header-wrap #header #header-center .menu li:nth-child(4) {
    margin-left: 330px;
  }
}
/* line 212, ../sass/layouts/_header.scss */
#header-wrap #header #header-center .menu li:nth-child(3) {
  border-right: none;
}
/* line 217, ../sass/layouts/_header.scss */
#header-wrap #header #header-right {
  display: inline-block;
  float: right;
  text-align: right;
  width: auto;
}

/* line 1, ../sass/layouts/_footer.scss */
#footer {
  width: 100%;
  padding: 20px;
  background: #603364 url("../images/footer-bkgrnd.png") no-repeat 0 0;
  background-size: cover;
  color: #fff;
}
@media screen and (max-width: 960px) {
  /* line 8, ../sass/layouts/_footer.scss */
  #footer .block {
    margin-right: 30px;
  }
}
/* line 15, ../sass/layouts/_footer.scss */
#footer .block.row-1 {
  /*border-bottom:1px solid #734e4e;*/
}
/* line 19, ../sass/layouts/_footer.scss */
#footer h2 {
  color: #CFB1B1;
  font-weight: 200;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  /* line 19, ../sass/layouts/_footer.scss */
  #footer h2 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 960px) {
  /* line 19, ../sass/layouts/_footer.scss */
  #footer h2 {
    line-height: normal;
  }
}
/* line 33, ../sass/layouts/_footer.scss */
#footer p {
  color: #CDCACE;
}
/* line 37, ../sass/layouts/_footer.scss */
#footer ul {
  margin: 0;
  padding: 0;
}
/* line 41, ../sass/layouts/_footer.scss */
#footer ul li {
  list-style: none;
}
/* line 46, ../sass/layouts/_footer.scss */
#footer a {
  color: #BB9EC1;
}
/* line 49, ../sass/layouts/_footer.scss */
#footer a:hover {
  color: #fff;
}
/* line 54, ../sass/layouts/_footer.scss */
#footer #footer-left {
  width: 33%;
  float: left;
}
@media screen and (max-width: 600px) {
  /* line 54, ../sass/layouts/_footer.scss */
  #footer #footer-left {
    float: none;
    width: 100%;
  }
}
/* line 63, ../sass/layouts/_footer.scss */
#footer #footer-left .contact-numbers {
  display: none;
}
@media screen and (max-width: 600px) {
  /* line 63, ../sass/layouts/_footer.scss */
  #footer #footer-left .contact-numbers {
    display: block;
    margin-top: -50px;
  }
  /* line 70, ../sass/layouts/_footer.scss */
  #footer #footer-left .contact-numbers h2 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  /* line 76, ../sass/layouts/_footer.scss */
  #footer #footer-left .region-footer-left {
    margin-top: -100px;
  }
}
/* line 83, ../sass/layouts/_footer.scss */
#footer #footer-center {
  width: 34%;
  display: inline-block;
  float: left;
}
@media screen and (max-width: 600px) {
  /* line 83, ../sass/layouts/_footer.scss */
  #footer #footer-center {
    float: none;
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 600px) {
  /* line 94, ../sass/layouts/_footer.scss */
  #footer #footer-center #inner-footer-top-center.row-1 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  /* line 103, ../sass/layouts/_footer.scss */
  #footer #footer-center .region-footer-center h2 {
    line-height: normal;
    margin-bottom: .5em;
  }
}
/* line 112, ../sass/layouts/_footer.scss */
#footer #footer-right {
  width: 32%;
  display: inline-block;
}
@media screen and (max-width: 600px) {
  /* line 112, ../sass/layouts/_footer.scss */
  #footer #footer-right {
    float: none;
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 600px) {
  /* line 122, ../sass/layouts/_footer.scss */
  #footer #footer-right .region-footer-right {
    margin-top: -100px;
  }
}
/* line 132, ../sass/layouts/_footer.scss */
#footer #inner-footer-top-center a {
  color: #FEFBB6;
}
/* line 135, ../sass/layouts/_footer.scss */
#footer #inner-footer-top-center a:hover {
  color: #fff;
}
/* line 141, ../sass/layouts/_footer.scss */
#footer .social-icon {
  display: inline-block;
  height: 45px;
  width: 45px;
  margin-right: 10px;
}
/* line 147, ../sass/layouts/_footer.scss */
#footer .social-icon img {
  display: block;
}
/* line 151, ../sass/layouts/_footer.scss */
#footer .social-icon a {
  color: #DBDCCC;
}
/* line 154, ../sass/layouts/_footer.scss */
#footer .social-icon a:hover {
  text-decoration: none;
  color: #fff;
}
/* line 160, ../sass/layouts/_footer.scss */
#footer .circle {
  background: transparent url("../images/circle-icon.svg") no-repeat top left;
  background-size: 103%;
}
/* line 164, ../sass/layouts/_footer.scss */
#footer .audio {
  background: transparent url("../images/audio-icon.svg") no-repeat top left;
  background-size: 103%;
}

/*
  Store & Products
*/
/* line 5, ../sass/pages/_store-products.scss */
.store-list {
  position: relative;
  z-index: 1;
}
/* line 9, ../sass/pages/_store-products.scss */
.store-list .views-row {
  border: none;
}
/* line 13, ../sass/pages/_store-products.scss */
.store-list .view-mode-product_teaser {
  padding-bottom: 55px;
}
/* line 17, ../sass/pages/_store-products.scss */
.store-list .views-column {
  float: left;
  border: 1px solid #ccc;
  padding: 0px;
  margin: 0px 15px 15px 0px;
  background-color: #F3F3F3;
  width: 215px;
  text-align: center;
  position: relative;
}
/* line 27, ../sass/pages/_store-products.scss */
.store-list .views-column img {
  float: none;
  padding: 0px;
}
/* line 32, ../sass/pages/_store-products.scss */
.store-list .views-column a {
  color: #555;
  display: block;
}
/* line 37, ../sass/pages/_store-products.scss */
.store-list .views-column h3.product-title {
  font-size: 0.9em;
  font-weight: normal;
  padding: 0px;
  margin: 0px;
}
/* line 44, ../sass/pages/_store-products.scss */
.store-list .views-column .commerce-product-field {
  display: block;
  text-align: right;
}
/* line 48, ../sass/pages/_store-products.scss */
.store-list .views-column .commerce-product-field .field-name-commerce-price {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  padding: 8px;
  background-color: #FFFACD;
  color: #d83900;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

@media screen and (max-width: 768px) {
  /* line 62, ../sass/pages/_store-products.scss */
  .store-list, .view-taxonomy-term {
    width: 90%;
    margin: 0 auto 0 auto;
  }
}
@media screen and (max-width: 480px) {
  /* line 71, ../sass/pages/_store-products.scss */
  .store-list {
    width: 70%;
  }
  /* line 75, ../sass/pages/_store-products.scss */
  .store-list .views-column {
    width: 100% !important;
    float: none !important;
    display: block !important;
    padding-top: 10px !important;
  }

  /* line 86, ../sass/pages/_store-products.scss */
  .view-product-categories .views-column {
    margin: 20px auto !important;
    display: block !important;
    float: none !important;
  }

  /* line 95, ../sass/pages/_store-products.scss */
  #block-views-product-categories-block h2 {
    text-align: center;
  }

  /* line 103, ../sass/pages/_store-products.scss */
  .node-product-display .group-left {
    width: 90%;
    float: none !important;
    margin: 0 auto;
  }
  /* line 110, ../sass/pages/_store-products.scss */
  .node-product-display img {
    width: 100% !important;
  }
  /* line 114, ../sass/pages/_store-products.scss */
  .node-product-display .group-right {
    float: none;
    /*border: 1px solid black;*/
    margin: 10px auto;
    width: 90%;
  }

  /* line 122, ../sass/pages/_store-products.scss */
  .group-footer {
    width: 90%;
    margin: 10px auto;
  }
}
/* line 3, ../sass/components/_store-product-categories.scss */
.view-product-categories .views-column {
  float: left;
  border: 1px solid #ccc;
  padding: 0px;
  margin: 0px 25px 25px 0px;
  background-color: #F3F3F3;
  width: 160px;
  height: 160px;
  text-align: center;
  position: relative;
}
/* line 14, ../sass/components/_store-product-categories.scss */
.view-product-categories .views-column img {
  float: none;
  padding: 0px;
}
/* line 20, ../sass/components/_store-product-categories.scss */
.view-product-categories .file-image {
  position: relative;
}
/* line 24, ../sass/components/_store-product-categories.scss */
.view-product-categories .flexblock-title {
  position: absolute;
  z-index: 1;
  bottom: 0px;
  padding: 10px 0px;
  line-height: 1.2em;
  font-size: 0.8em;
}
/* line 33, ../sass/components/_store-product-categories.scss */
.view-product-categories .overlay {
  width: 100%;
  background-color: #DDA54E;
  /*opacity: 0.9;*/
}
/* line 38, ../sass/components/_store-product-categories.scss */
.view-product-categories .overlay a {
  color: #fff;
  display: block;
}
/* line 44, ../sass/components/_store-product-categories.scss */
.view-product-categories .overlay-text {
  display: block;
  padding: 0px;
}

/*
  Pagination styles
*/
/* line 8, ../sass/components/_pagination.scss */
.pager li {
  background-color: #f8f8f8;
  padding: 7px;
  color: #d53900;
  text-transform: capitalize;
}
/* line 14, ../sass/components/_pagination.scss */
.pager li:hover {
  background-color: #eaeaea;
}
/* line 18, ../sass/components/_pagination.scss */
.pager li a {
  color: #d53900;
}
/* line 22, ../sass/components/_pagination.scss */
.pager li.pager-first, .pager li.pager-last {
  border-radius: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 28, ../sass/components/_pagination.scss */
.pager li.pager-previous {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
/* line 33, ../sass/components/_pagination.scss */
.pager li.pager-next {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/*
  FAQs
*/
/* line 7, ../sass/components/_faqs.scss */
.view-resources-downloads.view-display-id-page_4 .views-row, .view-faqs .views-row {
  border: none;
  padding: 0px;
}
/* line 13, ../sass/components/_faqs.scss */
.view-resources-downloads.view-display-id-page_4 .views-row .views-field-title a, .view-faqs .views-row .views-field-title a {
  color: #424242 !important;
  font-size: 1.5em !important;
  padding-left: 30px;
  display: block;
}
/* line 19, ../sass/components/_faqs.scss */
.view-resources-downloads.view-display-id-page_4 .views-row .views-field-title a:hover, .view-faqs .views-row .views-field-title a:hover {
  color: #d53900;
}
/* line 26, ../sass/components/_faqs.scss */
.view-resources-downloads.view-display-id-page_4 h3, .view-faqs h3 {
  border-top: 1px solid #ccc;
  clear: left;
  margin-bottom: 10px;
  padding: 25px 0 0;
}
/* line 33, ../sass/components/_faqs.scss */
.view-resources-downloads.view-display-id-page_4 .ui-state-default, .view-resources-downloads.view-display-id-page_4 .ui-widget-content .ui-state-default, .view-resources-downloads.view-display-id-page_4 .ui-widget-header .ui-state-default, .view-resources-downloads.view-display-id-page_4 .ui-state-active, .view-resources-downloads.view-display-id-page_4 .ui-widget-content .ui-state-active, .view-resources-downloads.view-display-id-page_4 .ui-widget-header .ui-state-active, .view-resources-downloads.view-display-id-page_4 .ui-widget-content, .view-faqs .ui-state-default, .view-faqs .ui-widget-content .ui-state-default, .view-faqs .ui-widget-header .ui-state-default, .view-faqs .ui-state-active, .view-faqs .ui-widget-content .ui-state-active, .view-faqs .ui-widget-header .ui-state-active, .view-faqs .ui-widget-content {
  background: none;
  border: none;
  padding: 8px 0;
}
/* line 39, ../sass/components/_faqs.scss */
.view-resources-downloads.view-display-id-page_4 .ui-accordion .ui-accordion-header .ui-icon, .view-faqs .ui-accordion .ui-accordion-header .ui-icon {
  left: 0px;
  top: 25px;
}
/* line 44, ../sass/components/_faqs.scss */
.view-resources-downloads.view-display-id-page_4 .ui-state-default .ui-icon, .view-faqs .ui-state-default .ui-icon {
  background: transparent url("../images/toggle-collapsed.png") no-repeat 0 0;
  background-size: cover;
}
/* line 49, ../sass/components/_faqs.scss */
.view-resources-downloads.view-display-id-page_4 .ui-state-active .ui-icon, .view-faqs .ui-state-active .ui-icon {
  background: transparent url("../images/toggle-expanded.png") no-repeat 0 0;
  background-size: cover;
}
/* line 54, ../sass/components/_faqs.scss */
.view-resources-downloads.view-display-id-page_4 .ui-accordion-content, .view-faqs .ui-accordion-content {
  padding: 0 1.85em;
  height: auto !important;
  min-height: 100px;
  /* .views-field-field-faq-link {
    display:inline;
  } */
}
/* line 60, ../sass/components/_faqs.scss */
.view-resources-downloads.view-display-id-page_4 .ui-accordion-content p, .view-faqs .ui-accordion-content p {
  padding: 0px;
  margin: 0px;
  /*display:inline;*/
}
/* line 73, ../sass/components/_faqs.scss */
.view-resources-downloads.view-display-id-page_4 .ui-widget-content a, .view-faqs .ui-widget-content a {
  color: #83007E;
}

/* line 1, ../sass/components/_herobanner.scss */
#hero-banner {
  width: 100%;
  height: auto;
  padding-top: 125px;
  text-align: center;
}
/* line 7, ../sass/components/_herobanner.scss */
#hero-banner .flexslider {
  border: none;
  box-shadow: none;
}
/* line 12, ../sass/components/_herobanner.scss */
#hero-banner .flex-control-nav {
  display: none;
}
/* line 16, ../sass/components/_herobanner.scss */
#hero-banner img {
  float: none;
}

/* line 1, ../sass/components/_breadcrumbs.scss */
#main {
  padding-top: 0;
}
/* line 4, ../sass/components/_breadcrumbs.scss */
#main .breadcrumb ol {
  margin-right: 8px;
  float: left;
}
/* line 10, ../sass/components/_breadcrumbs.scss */
#main.landing-page .breadcrumb {
  margin-top: 20px;
}
/* line 14, ../sass/components/_breadcrumbs.scss */
#main .breadcrumb {
  margin-left: 10px;
}
/* line 17, ../sass/components/_breadcrumbs.scss */
#main .breadcrumb li {
  font-size: 0.85em;
}
/* line 21, ../sass/components/_breadcrumbs.scss */
#main .breadcrumb a {
  color: #A8A5A4;
}
/* line 24, ../sass/components/_breadcrumbs.scss */
#main .breadcrumb a:hover {
  color: #666;
}
/* line 30, ../sass/components/_breadcrumbs.scss */
#main .breadcrumb-page-title {
  font-size: 0.85em;
  margin-bottom: 25px;
  display: block;
  line-height: 1.9em;
  padding: 0 0 0 10px;
}
/* line 38, ../sass/components/_breadcrumbs.scss */
#main .breadcrumb-page-title::before {
  content: '» ';
}

/* line 1, ../sass/components/_utilitybar.scss */
#utility-bar {
  padding: 15px 0 0 !important;
  max-width: 1322px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  /* line 1, ../sass/components/_utilitybar.scss */
  #utility-bar {
    display: none;
  }
}
/* line 10, ../sass/components/_utilitybar.scss */
#utility-bar a {
  color: #C36A00;
  text-transform: uppercase;
  font-size: .8em;
}
/* line 15, ../sass/components/_utilitybar.scss */
#utility-bar a:hover {
  color: #666;
}
/* line 20, ../sass/components/_utilitybar.scss */
#utility-bar #block-search-form,
#utility-bar #views-exposed-form-site-search-page {
  display: block;
  float: left;
  height: 35px;
  padding: 0 0 0 10px;
  margin-top: -30px;
  line-height: normal;
}
/* line 29, ../sass/components/_utilitybar.scss */
#utility-bar #block-search-form label,
#utility-bar #views-exposed-form-site-search-page label {
  display: none;
}
/* line 33, ../sass/components/_utilitybar.scss */
#utility-bar #block-search-form .views-exposed-form .views-exposed-widget,
#utility-bar #views-exposed-form-site-search-page .views-exposed-form .views-exposed-widget {
  padding-right: 5px;
  float: left;
}
/* line 38, ../sass/components/_utilitybar.scss */
#utility-bar #block-search-form .form-text, #utility-bar #block-search-form .form-type-textfield,
#utility-bar #views-exposed-form-site-search-page .form-text,
#utility-bar #views-exposed-form-site-search-page .form-type-textfield {
  width: 250px;
  height: 20px;
}
/* line 43, ../sass/components/_utilitybar.scss */
#utility-bar #block-search-form #edit-search-api-views-fulltext,
#utility-bar #views-exposed-form-site-search-page #edit-search-api-views-fulltext {
  border: 1px solid #E5E5E5;
}
/* line 47, ../sass/components/_utilitybar.scss */
#utility-bar #block-search-form .form-submit,
#utility-bar #views-exposed-form-site-search-page .form-submit {
  font-size: .8em;
  text-transform: uppercase;
  color: #C36A00;
  line-height: 1.2em;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  background: none;
  padding: 1px 15px 2px 15px;
  position: absolute;
  margin-top: 21.5px;
}
/* line 61, ../sass/components/_utilitybar.scss */
#utility-bar .block {
  margin: 0;
  padding: 0;
}
/* line 66, ../sass/components/_utilitybar.scss */
#utility-bar ul {
  float: right;
  margin: 0 10px 0 0;
  padding: 0;
}
/* line 71, ../sass/components/_utilitybar.scss */
#utility-bar ul li {
  float: left;
  margin-left: 35px;
  padding-left: 10px;
}

/* line 3, ../sass/components/_tables.scss */
table {
  border: 2px solid #CCCCCC;
}
/* line 6, ../sass/components/_tables.scss */
table tr.even {
  padding: 0px;
}
/* line 10, ../sass/components/_tables.scss */
table th {
  font-size: 1em;
  background: #E5E5E5;
  padding: 5px;
  font-weight: bold;
  border: 1px solid #cccccc;
}
/* line 18, ../sass/components/_tables.scss */
table th.views-field-title a {
  font-size: 1em;
  font-weight: bold;
}
/* line 23, ../sass/components/_tables.scss */
table td {
  font-size: .8em;
  padding: 5px 5px;
  border: 1px solid #cccccc;
}
/* line 28, ../sass/components/_tables.scss */
table td a {
  color: #82047E;
  font-weight: 400;
}
/* line 32, ../sass/components/_tables.scss */
table td a:hover {
  color: #666;
}
/* line 39, ../sass/components/_tables.scss */
table td.active {
  background: none;
}
/* line 43, ../sass/components/_tables.scss */
table td.views-field-title {
  font-size: .8em;
}
/* line 47, ../sass/components/_tables.scss */
table td.views-field-title.active {
  font-size: .8em;
}

@media screen and (max-width: 600px) {
  /* line 55, ../sass/components/_tables.scss */
  table, thead, tbody, th, td, tr {
    display: block;
  }

  /* line 60, ../sass/components/_tables.scss */
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  /* line 66, ../sass/components/_tables.scss */
  tr {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  /* line 71, ../sass/components/_tables.scss */
  tr.even {
    padding: 20px 15px;
  }

  /* line 75, ../sass/components/_tables.scss */
  td:first-child {
    border-top: 1px solid #ccc;
  }

  /* line 79, ../sass/components/_tables.scss */
  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    position: relative;
    padding-left: 50%;
    min-height: 15px;
  }

  /* line 92, ../sass/components/_tables.scss */
  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 50%;
    margin-top: -5px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font: bold 12px sans-serif;
  }

  /* line 106, ../sass/components/_tables.scss */
  td.active:before {
    font-size: 12px;
  }

  /* line 114, ../sass/components/_tables.scss */
  .page-user-register #field-phone-number-add-more-wrapper table thead tr,
  .view-my-classes table thead tr {
    position: inherit;
    top: inherit;
    left: inherit;
  }
}
/* line 1, ../sass/components/_buttons.scss */
#block-reiki-membership-upgrade-button,
.pane-reiki-membership-upgrade-button {
  float: none;
  clear: both;
  text-align: center;
  padding: 16px 0;
}

/* line 10, ../sass/components/_buttons.scss */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
  display: inline-block;
  padding: 4px 8px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* line 19, ../sass/components/_buttons.scss */
.btn-join {
  border: 1px solid #7f0a7a;
  float: none;
  clear: both;
  margin: 0 auto;
  padding: 0px 8px 2px;
  border-radius: 5px;
  background: #ab23a6;
  background: -moz-linear-gradient(top, #ab23a6 0%, #820472 100%);
  background: -webkit-linear-gradient(top, #ab23a6 0%, #820472 100%);
  background: linear-gradient(to bottom, #ab23a6 0%, #820472 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ab23a6', endColorstr='#820472',GradientType=0 );
  color: #fff;
}
/* line 33, ../sass/components/_buttons.scss */
.btn-join:hover {
  color: #fff;
}

/*
  Subpage Bottom Flexblocks
*/
/* line 5, ../sass/components/_bottomflexblocks.scss */
#subpage-lower-block-row {
  background-color: #f8f8f8;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  margin: 0px;
  padding: 45px 0 50px;
  width: 100%;
}
/* line 13, ../sass/components/_bottomflexblocks.scss */
#subpage-lower-block-row .block {
  display: block;
  float: left;
  border: 1px solid #ccc;
  width: 100%;
  max-width: 215px;
  margin-right: 3%;
  min-height: 400px;
}
/* line 22, ../sass/components/_bottomflexblocks.scss */
#subpage-lower-block-row .block.last {
  margin-right: 0px;
}
/* line 27, ../sass/components/_bottomflexblocks.scss */
#subpage-lower-block-row p {
  margin: 0px;
  padding: 0px;
}
/* line 31, ../sass/components/_bottomflexblocks.scss */
#subpage-lower-block-row p img {
  margin: 0px;
  padding: 0px;
}
/* line 36, ../sass/components/_bottomflexblocks.scss */
#subpage-lower-block-row p a::after {
  content: ' »';
}

@media screen and (max-width: 960px) {
  /* line 43, ../sass/components/_bottomflexblocks.scss */
  #subpage-lower-block-row {
    width: 93%;
    margin: 0 auto 0 auto;
  }
}
@media screen and (max-width: 768px) {
  /* line 53, ../sass/components/_bottomflexblocks.scss */
  #subpage-lower-block-row {
    max-width: 500px;
  }
}
@media screen and (max-width: 600px) {
  /* line 63, ../sass/components/_bottomflexblocks.scss */
  #subpage-lower-block-row {
    min-width: 480px;
  }
}
@media screen and (max-width: 480px) {
  /* line 72, ../sass/components/_bottomflexblocks.scss */
  #subpage-lower-block-row {
    max-width: none !important;
    min-width: 200px;
  }
  /* line 77, ../sass/components/_bottomflexblocks.scss */
  #subpage-lower-block-row .block {
    max-width: none;
    padding-top: 0px;
  }
  /* line 83, ../sass/components/_bottomflexblocks.scss */
  #subpage-lower-block-row p img {
    width: 100%;
  }
}
/* line 6, ../sass/pages/_checkout.scss */
.page-cart #content .form-wrapper, .page-checkout #content .form-wrapper {
  margin-bottom: 30px;
}
/* line 9, ../sass/pages/_checkout.scss */
.page-cart #content .form-wrapper .form-item, .page-checkout #content .form-wrapper .form-item {
  width: 100%;
  margin: 10px 0 15px;
}
/* line 14, ../sass/pages/_checkout.scss */
.page-cart #content .form-wrapper .form-type-textfield .form-text, .page-checkout #content .form-wrapper .form-type-textfield .form-text {
  width: 100%;
  padding: 5px 2px;
}
/* line 19, ../sass/pages/_checkout.scss */
.page-cart #content .form-wrapper legend, .page-checkout #content .form-wrapper legend {
  font-weight: bold;
  font-size: 1.2em;
  color: #787878;
}
/* line 25, ../sass/pages/_checkout.scss */
.page-cart #content .form-wrapper label, .page-checkout #content .form-wrapper label {
  color: #787878;
}
/* line 30, ../sass/pages/_checkout.scss */
.page-cart #content .view-commerce-cart-summary td, .page-checkout #content .view-commerce-cart-summary td {
  padding: 5px 0;
}
/* line 34, ../sass/pages/_checkout.scss */
.page-cart #content .view-commerce-cart-summary tr.even, .page-checkout #content .view-commerce-cart-summary tr.even {
  background: #ededed !important;
}

@media screen and (max-width: 960px) {
  /* line 45, ../sass/pages/_checkout.scss */
  .page-cart #content, .page-checkout #content {
    width: 95%;
  }
  /* line 48, ../sass/pages/_checkout.scss */
  .page-cart #content .view-commerce-cart-form, .page-checkout #content .view-commerce-cart-form {
    border-bottom: 3px solid #CCCCCC;
    padding-bottom: 20px;
  }
  /* line 53, ../sass/pages/_checkout.scss */
  .page-cart #content .region-sidebar-first, .page-checkout #content .region-sidebar-first {
    padding: 0px;
    position: relative;
  }
  /* line 57, ../sass/pages/_checkout.scss */
  .page-cart #content .region-sidebar-first .block-nodeblock, .page-checkout #content .region-sidebar-first .block-nodeblock {
    float: left;
  }
  /* line 61, ../sass/pages/_checkout.scss */
  .page-cart #content .commerce-price-formatted-components, .page-checkout #content .commerce-price-formatted-components {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  /* line 76, ../sass/pages/_checkout.scss */
  .page-cart #content .view-commerce-cart-form .form-actions .form-submit, .page-checkout #content .view-commerce-cart-form .form-actions .form-submit {
    min-width: 150px;
    padding: 5px 10px;
    background: #FFF;
    border: 1px solid #BABABA;
    border-radius: 5px;
    box-shadow: 0px 0px 1px #D6D6D6;
    margin: 0 10px 0 0;
  }
  /* line 87, ../sass/pages/_checkout.scss */
  .page-cart #content .commerce-price-formatted-components, .page-checkout #content .commerce-price-formatted-components {
    width: 55%;
  }
  /* line 91, ../sass/pages/_checkout.scss */
  .page-cart #content .commerce-checkout-progress li, .page-checkout #content .commerce-checkout-progress li {
    width: 96%;
    border-bottom: 1px solid #cccccc;
  }
}
@media screen and (max-width: 600px) {
  /* line 107, ../sass/pages/_checkout.scss */
  .page-cart #content .commerce-price-formatted-components, .page-checkout #content .commerce-price-formatted-components {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  /* line 120, ../sass/pages/_checkout.scss */
  .page-cart #content .commerce-price-formatted-components, .page-checkout #content .commerce-price-formatted-components {
    width: 95%;
  }
}
/* line 2, ../sass/pages/_taxonomy.scss */
.page-taxonomy-term .term-list {
  /*border: 1px solid black;*/
  padding: 0;
  margin: 0;
  list-style: none;
}
/* line 7, ../sass/pages/_taxonomy.scss */
.page-taxonomy-term .term-list li {
  border: 1px solid #C2C2C2;
  width: 30%;
  float: left;
  margin: 0 3% 15px 0;
  min-height: 420px;
  position: relative;
  text-align: center;
}
/* line 15, ../sass/pages/_taxonomy.scss */
.page-taxonomy-term .term-list li .date {
  padding: 0px 5px;
  font-size: 0.9em;
  text-align: left;
  display: block;
}
/* line 21, ../sass/pages/_taxonomy.scss */
.page-taxonomy-term .term-list li h2 {
  /*border: 1px solid black;*/
  font: 1em sans-serif;
  margin: 0 0 1px 0;
  padding: 0 5px;
  text-align: left;
}
/* line 28, ../sass/pages/_taxonomy.scss */
.page-taxonomy-term .term-list li p {
  padding: 0 5px;
  margin: 0 0 5px;
  text-align: left;
}
/* line 33, ../sass/pages/_taxonomy.scss */
.page-taxonomy-term .term-list li .read-more {
  display: block;
  text-align: left;
  padding: 0 5px;
  text-align: left;
}
/* line 39, ../sass/pages/_taxonomy.scss */
.page-taxonomy-term .term-list li img {
  display: block;
  width: 100%;
  margin: 0 auto 12px;
}
/* line 44, ../sass/pages/_taxonomy.scss */
.page-taxonomy-term .term-list li .view-commerce-display-price {
  display: block;
  position: absolute;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  bottom: 0px;
  right: 0px;
  padding: 0px 3px;
  background: #FFFACD;
  color: #d83900;
  height: 26px;
}
/* line 58, ../sass/pages/_taxonomy.scss */
.page-taxonomy-term .view-taxonomy-term-listings {
  clear: both;
}
/* line 61, ../sass/pages/_taxonomy.scss */
.page-taxonomy-term .view-taxonomy-term-listings .view-commerce-display-price .views-row {
  padding: 0px;
  border-top: 0px;
}

@media screen and (max-width: 960px) {
  /* line 71, ../sass/pages/_taxonomy.scss */
  .term-list li {
    min-height: 440px;
  }
}
@media screen and (max-width: 768px) {
  /* line 79, ../sass/pages/_taxonomy.scss */
  .term-list li {
    width: 46%;
    margin: 0 1% 15px 0;
  }
}
@media screen and (max-width: 600px) {
  /* line 88, ../sass/pages/_taxonomy.scss */
  .term-list li {
    width: 58%;
    margin: 0 auto 15px auto;
    display: block;
    position: relative;
    float: none;
  }
}
@media screen and (max-width: 480px) {
  /* line 100, ../sass/pages/_taxonomy.scss */
  .term-list li {
    width: 78%;
  }
}
/* line 3, ../sass/pages/_membershiplanding.scss */
.section-membership .flexslider {
  min-height: 350px;
  position: relative !important;
}
/* line 7, ../sass/pages/_membershiplanding.scss */
.section-membership .flexslider:after {
  content: "";
  display: table;
  clear: both;
  margin-top: 62px;
}
/* line 14, ../sass/pages/_membershiplanding.scss */
.section-membership .flexslider .page-inner {
  margin-top: -200px !important;
}
/* line 18, ../sass/pages/_membershiplanding.scss */
.section-membership .flexslider .slides img {
  display: block;
  max-height: 435px;
  min-height: 350px;
  float: none;
  width: auto;
  margin: 0px auto;
}
/* line 28, ../sass/pages/_membershiplanding.scss */
.section-membership .clear-slide {
  margin-top: -35px;
}

/* line 6, ../sass/pages/_hospital.scss */
.page-hospitallist table td.views-field-field-hospital-program-type span {
  border: 1px solid #00C500;
  display: block;
  padding: 10px 0 0 0;
  overflow: hidden;
  height: 0px;
  width: 10px;
  border-radius: 50%;
  margin: 5px 10px 0 10px;
  background: #00C500;
}

/* line 24, ../sass/pages/_hospital.scss */
.node-type-hospital h2 {
  margin: 0 0 15px 0 !important;
  padding: 0px;
  font-size: 1.3em;
  font-weight: bold;
  color: #82047E;
  border-bottom: 1px solid #820473;
}
/* line 33, ../sass/pages/_hospital.scss */
.node-type-hospital .info-box {
  width: 45% !important;
  float: left;
  padding: 10px;
}
/* line 38, ../sass/pages/_hospital.scss */
.node-type-hospital .info-box label {
  border-bottom: 1px solid #cccccc;
  margin-top: 8px;
}
/* line 44, ../sass/pages/_hospital.scss */
.node-type-hospital .hospital-info {
  margin-right: 2%;
}
/* line 53, ../sass/pages/_hospital.scss */
.node-type-hospital .program-description {
  clear: both;
}

@media screen and (max-width: 480px) {
  /* line 62, ../sass/pages/_hospital.scss */
  .node-type-hospital .info-box {
    width: 96% !important;
  }
}
@media screen and (max-width: 600px) {
  /* line 69, ../sass/pages/_hospital.scss */
  .page-hospitallist {
    /* Label the data */
  }
  /* line 72, ../sass/pages/_hospital.scss */
  .page-hospitallist td:nth-of-type(1):before {
    content: "Name";
  }
  /* line 73, ../sass/pages/_hospital.scss */
  .page-hospitallist td:nth-of-type(2):before {
    content: "Address";
  }
  /* line 74, ../sass/pages/_hospital.scss */
  .page-hospitallist td:nth-of-type(3):before {
    content: "City";
  }
  /* line 75, ../sass/pages/_hospital.scss */
  .page-hospitallist td:nth-of-type(4):before {
    content: "State";
  }
  /* line 76, ../sass/pages/_hospital.scss */
  .page-hospitallist td:nth-of-type(5):before {
    content: "Zip";
  }
  /* line 77, ../sass/pages/_hospital.scss */
  .page-hospitallist td:nth-of-type(6):before {
    content: "T";
  }
}
/* line 3, ../sass/pages/_memberlisting.scss */
.pane-practitioner-listing h2.block-title,
.pane-practitioner-listing-intl h2.block-title {
  font-weight: 400;
  color: #82047d;
  margin: 16px 0 8px;
}

/* line 12, ../sass/pages/_memberlisting.scss */
.view-practitioner-listing .views-summary,
.view-practitioner-listing-intl .views-summary {
  display: inline-block;
  margin-right: 12px;
  text-decoration: underline;
}
/* line 19, ../sass/pages/_memberlisting.scss */
.view-practitioner-listing table td,
.view-practitioner-listing-intl table td {
  border: none;
}
/* line 23, ../sass/pages/_memberlisting.scss */
.view-practitioner-listing tr.data-row,
.view-practitioner-listing-intl tr.data-row {
  border-top: 1px solid #ccc;
}
/* line 26, ../sass/pages/_memberlisting.scss */
.view-practitioner-listing tr.about-row,
.view-practitioner-listing-intl tr.about-row {
  border-bottom: 1px solid #ccc;
}
/* line 29, ../sass/pages/_memberlisting.scss */
.view-practitioner-listing tr.membership-level--LRMT,
.view-practitioner-listing-intl tr.membership-level--LRMT {
  border-color: #82047d;
  background: #f2d9f2;
}

@media screen and (max-width: 600px) {
  /* line 38, ../sass/pages/_memberlisting.scss */
  .section-i-want-find-reiki-practitioner td:nth-of-type(1):before {
    content: "Member";
  }
  /* line 39, ../sass/pages/_memberlisting.scss */
  .section-i-want-find-reiki-practitioner td:nth-of-type(2):before {
    content: "Location";
  }
  /* line 40, ../sass/pages/_memberlisting.scss */
  .section-i-want-find-reiki-practitioner td:nth-of-type(3):before {
    content: "Zip";
  }
  /* line 41, ../sass/pages/_memberlisting.scss */
  .section-i-want-find-reiki-practitioner td:nth-of-type(4):before {
    content: "Teaches In";
  }
  /* line 42, ../sass/pages/_memberlisting.scss */
  .section-i-want-find-reiki-practitioner td:nth-of-type(5):before {
    content: "Classes Link";
  }
  /* line 43, ../sass/pages/_memberlisting.scss */
  .section-i-want-find-reiki-practitioner td:nth-of-type(6):before {
    content: "Contact Link";
  }

  /* line 46, ../sass/pages/_memberlisting.scss */
  .page-member-listing {
    /* Label the data */
  }
  /* line 48, ../sass/pages/_memberlisting.scss */
  .page-member-listing td:nth-of-type(1):before {
    content: "Member";
  }
  /* line 49, ../sass/pages/_memberlisting.scss */
  .page-member-listing td:nth-of-type(2):before {
    content: "Level";
  }
  /* line 50, ../sass/pages/_memberlisting.scss */
  .page-member-listing td:nth-of-type(3):before {
    content: "Location";
  }
  /* line 51, ../sass/pages/_memberlisting.scss */
  .page-member-listing td:nth-of-type(4):before {
    content: "Zip";
  }
  /* line 52, ../sass/pages/_memberlisting.scss */
  .page-member-listing td:nth-of-type(5):before {
    content: "Teaches In";
  }
  /* line 53, ../sass/pages/_memberlisting.scss */
  .page-member-listing td:nth-of-type(6):before {
    content: "Member Since";
  }
  /* line 54, ../sass/pages/_memberlisting.scss */
  .page-member-listing td:nth-of-type(7):before {
    content: "Classes Link";
  }
  /* line 55, ../sass/pages/_memberlisting.scss */
  .page-member-listing td:nth-of-type(8):before {
    content: "Contact Link";
  }
}
/* line 3, ../sass/pages/_classes.scss */
#page .view-classes-listing {
  margin: 0px;
}
/* line 5, ../sass/pages/_classes.scss */
#page .view-classes-listing h2.block__title {
  font-size: 1.2em;
  color: #4D4E52;
  margin-top: 10px;
}
/* line 10, ../sass/pages/_classes.scss */
#page .view-classes-listing th.views-field-title {
  text-align: left;
}
/* line 12, ../sass/pages/_classes.scss */
#page .view-classes-listing th.views-field-title a {
  font-size: inherit;
  font-weight: normal;
  color: #82047d;
}
/* line 18, ../sass/pages/_classes.scss */
#page .view-classes-listing .views-row .field-content {
  padding-top: 9px;
  font-size: 1em;
  font-weight: normal;
  color: #82047d;
}
/* line 23, ../sass/pages/_classes.scss */
#page .view-classes-listing .views-row .field-content a {
  color: #82047d;
}
/* line 27, ../sass/pages/_classes.scss */
#page .view-classes-listing .form-item-field-event-dates-value-date, #page .view-classes-listing .form-item-field-event-dates-value2-date, #page .view-classes-listing .form-item-field-event-dates-value-date {
  margin: 0px;
}
/* line 29, ../sass/pages/_classes.scss */
#page .view-classes-listing .form-item-field-event-dates-value-date label, #page .view-classes-listing .form-item-field-event-dates-value2-date label, #page .view-classes-listing .form-item-field-event-dates-value-date label {
  display: none;
}
/* line 33, ../sass/pages/_classes.scss */
#page .view-classes-listing .views-exposed-form {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
/* line 37, ../sass/pages/_classes.scss */
#page .view-classes-listing .views-exposed-form label {
  color: #666;
  font-size: 0.9em;
  font-weight: normal;
}

/*
  Upcoming Classes
*/
/* line 50, ../sass/pages/_classes.scss */
#block-views-upcoming-classes-block-2 .block__title {
  font-size: 1.25em;
}

/* line 55, ../sass/pages/_classes.scss */
.view-upcoming-classes {
  margin: 0px;
}
/* line 57, ../sass/pages/_classes.scss */
.view-upcoming-classes .views-row {
  padding: 25px 0px 20px 0px;
}
/* line 60, ../sass/pages/_classes.scss */
.view-upcoming-classes .views-row-last {
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
/* line 64, ../sass/pages/_classes.scss */
.view-upcoming-classes span.date-display-single {
  float: left;
  font-size: 1.2em;
  font-weight: bold;
  width: 130px;
}
/* line 70, ../sass/pages/_classes.scss */
.view-upcoming-classes h2 {
  line-height: 0.5em;
  margin: 0;
  padding: 0;
}
/* line 74, ../sass/pages/_classes.scss */
.view-upcoming-classes h2 a {
  color: #424242;
}
/* line 78, ../sass/pages/_classes.scss */
.view-upcoming-classes p {
  margin: 15px 0px 10px 130px;
  color: #424242;
}

/* line 86, ../sass/pages/_classes.scss */
.page-classes #sidebar-left h2 {
  margin-top: 10px;
}
/* line 90, ../sass/pages/_classes.scss */
.page-classes h2 {
  color: #82047D;
  display: block;
  font-weight: 400;
}
/* line 98, ../sass/pages/_classes.scss */
.page-classes #content .block-facetapi a.facetapi-active {
  width: 91px !important;
  display: block;
  padding: 29px 0 0;
  height: 0px;
  overflow: hidden;
  background: transparent url("../images/reset-button.png") repeat-x top center;
  margin-top: 11px;
}

@media screen and (max-width: 600px) {
  /* line 113, ../sass/pages/_classes.scss */
  .page-classes {
    /* Label the data */
  }
  /* line 114, ../sass/pages/_classes.scss */
  .page-classes .view-classes-list td.views-field-title {
    padding-top: 8px !important;
    font-size: .8em;
  }
  /* line 119, ../sass/pages/_classes.scss */
  .page-classes td:nth-of-type(1):before {
    content: "Date";
  }
  /* line 122, ../sass/pages/_classes.scss */
  .page-classes td:nth-of-type(2):before {
    content: "Class";
  }
  /* line 125, ../sass/pages/_classes.scss */
  .page-classes td:nth-of-type(3):before {
    content: "Instructor";
  }
  /* line 128, ../sass/pages/_classes.scss */
  .page-classes td:nth-of-type(4):before {
    content: "Location";
  }
  /* line 131, ../sass/pages/_classes.scss */
  .page-classes td:nth-of-type(5):before {
    content: "Price";
  }
  /* line 134, ../sass/pages/_classes.scss */
  .page-classes td:nth-of-type(6):before {
    content: "Other";
  }
}
/* line 140, ../sass/pages/_classes.scss */
.not-front .views-field-title a {
  font-size: 1.1em;
  color: #82047d;
}

/* line 146, ../sass/pages/_classes.scss */
.pane-my-classes h2 {
  text-align: center;
  line-height: 1em;
  margin-bottom: 0.8em;
}

/* line 153, ../sass/pages/_classes.scss */
.class-location {
  font-weight: bold;
}

/* line 1, ../sass/pages/_online-class.scss */
.not-front #page #hero-banner.online-class {
  padding-top: 125px;
}

/* line 8, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-title h3 {
  display: inline-block;
  width: 49.5%;
}
/* line 12, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-title .accordion-indicators {
  display: inline-block;
  width: 50%;
  text-align: right;
}
/* line 17, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-title .accordion-indicators .accordion-chapter-completed {
  padding-right: 30px;
}
/* line 20, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-title .accordion-indicators .accordion-chapter-completed i {
  color: #67a235;
}
/* line 24, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-title .accordion-indicators .accordion-chapter-incomplete {
  padding-right: 30px;
}
/* line 27, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-title .accordion-indicators .accordion-chapter-incomplete i {
  color: #cccccc;
}
/* line 31, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-title .accordion-indicators .accordion-status {
  font-size: 24px;
  line-height: 1;
  padding-right: 20px;
}
/* line 36, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-title .accordion-indicators .accordion-status .open {
  display: none;
}
/* line 39, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-title .accordion-indicators .accordion-status .closed {
  display: inline-block;
}
/* line 45, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-title.ui-state-active .open {
  display: inline-block;
}
/* line 48, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-title.ui-state-active .closed {
  display: none;
}
/* line 53, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-body {
  background-color: #f0f0f0;
  padding: 15px 15px 15px 40px;
}
/* line 57, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-body .views-row {
  padding: 10px 0 10px 10px;
  border-bottom: 1px solid #fff;
}
/* line 61, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-body .views-row:last-child {
  border-bottom: 0 none;
}
/* line 64, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-body .views-row .course-object-id {
  display: inline-block;
  margin-right: 10px;
}
/* line 67, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-body .views-row .course-object-id, .node-type-course #page .accordion-body .views-row .course-object-id a {
  color: #df6e44;
}
/* line 71, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-body .views-row .course-object {
  display: inline-block;
}
/* line 74, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-body .views-row .course-object span a {
  color: #474747;
}
/* line 79, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-body .views-row .course-object-indicator {
  display: inline-block;
  float: right;
  padding-right: 10px;
}
/* line 83, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-body .views-row .course-object-indicator .incomplete {
  color: #cccccc;
}
/* line 86, ../sass/pages/_online-class.scss */
.node-type-course #page .accordion-body .views-row .course-object-indicator .complete {
  color: #67a235;
}

/* line 10, ../sass/pages/_resources.scss */
.section-resources-downloads #content .views-exposed-form .views-exposed-widget .form-submit {
  margin: 1em 0 0 5px !important;
  padding: 3px 18px;
}
/* line 16, ../sass/pages/_resources.scss */
.section-resources-downloads #content .views-exposed-form .views-exposed-widget .form-type-textfield input {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100% !important;
}
/* line 24, ../sass/pages/_resources.scss */
.section-resources-downloads #content .views-exposed-form #edit-search-api-views-fulltext-wrapper {
  width: 80%;
  padding: 0%;
}

@media screen and (max-width: 768px) {
  /* line 42, ../sass/pages/_resources.scss */
  .section-resources-downloads #content .views-exposed-form .views-exposed-widget .form-submit {
    margin: 0 0 0 5px !important;
    display: block;
    float: none;
  }
  /* line 54, ../sass/pages/_resources.scss */
  .section-resources-downloads #content .views-exposed-form #edit-search-api-views-fulltext-wrapper {
    width: 100% !important;
    padding: 0%;
    float: none !important;
    display: block !important;
  }
}
/* line 4, ../sass/pages/_stories-articles.scss */
.node-type-story .field-type-taxonomy-term-reference .field-items .field-item, .node-type-article .field-type-taxonomy-term-reference .field-items .field-item {
  padding-bottom: 20px;
}

/* line 14, ../sass/pages/_stories-articles.scss */
.not-front .view-resources-downloads .views-field-title {
  padding-top: 1em;
}
/* line 17, ../sass/pages/_stories-articles.scss */
.not-front .view-resources-downloads h2 {
  font-weight: normal;
}

/* line 22, ../sass/pages/_stories-articles.scss */
.view.view-nodequeue-2 .views-field-title a {
  font-weight: 400;
  font-size: 1.4em;
}

/* line 3, ../sass/pages/_student-lists.scss */
.page-student-list #main .block-facetapi, .page-holyfirestudentlist #main .block-facetapi, .page-holy-fire-student-list #main .block-facetapi {
  padding: 0;
}
/* line 7, ../sass/pages/_student-lists.scss */
.page-student-list #main .item-list li, .page-holyfirestudentlist #main .item-list li, .page-holy-fire-student-list #main .item-list li {
  display: inline-block;
  padding: 5px;
}

@media screen and (max-width: 600px) {
  /* line 16, ../sass/pages/_student-lists.scss */
  .page-student-list {
    /* Label the data */
  }
  /* line 18, ../sass/pages/_student-lists.scss */
  .page-student-list td:nth-of-type(1):before {
    content: "Student";
  }
  /* line 21, ../sass/pages/_student-lists.scss */
  .page-student-list td:nth-of-type(2):before {
    content: "Class";
  }
  /* line 24, ../sass/pages/_student-lists.scss */
  .page-student-list td:nth-of-type(3):before {
    content: "Date";
  }
  /* line 27, ../sass/pages/_student-lists.scss */
  .page-student-list td:nth-of-type(4):before {
    content: "Teacher";
  }
  /* line 30, ../sass/pages/_student-lists.scss */
  .page-student-list td:nth-of-type(5):before {
    content: "KarunaNo";
  }

  /* line 35, ../sass/pages/_student-lists.scss */
  .page-holyfirestudentlist td:nth-of-type(1):before, .page-holy-fire-student-list td:nth-of-type(1):before {
    content: "Student";
  }
  /* line 38, ../sass/pages/_student-lists.scss */
  .page-holyfirestudentlist td:nth-of-type(2):before, .page-holy-fire-student-list td:nth-of-type(2):before {
    content: "City";
  }
  /* line 41, ../sass/pages/_student-lists.scss */
  .page-holyfirestudentlist td:nth-of-type(3):before, .page-holy-fire-student-list td:nth-of-type(3):before {
    content: "State";
  }
  /* line 44, ../sass/pages/_student-lists.scss */
  .page-holyfirestudentlist td:nth-of-type(4):before, .page-holy-fire-student-list td:nth-of-type(4):before {
    content: "Country";
  }
  /* line 47, ../sass/pages/_student-lists.scss */
  .page-holyfirestudentlist td:nth-of-type(5):before, .page-holy-fire-student-list td:nth-of-type(5):before {
    content: "Class";
  }
  /* line 50, ../sass/pages/_student-lists.scss */
  .page-holyfirestudentlist td:nth-of-type(6):before, .page-holy-fire-student-list td:nth-of-type(6):before {
    content: "Date";
  }
  /* line 53, ../sass/pages/_student-lists.scss */
  .page-holyfirestudentlist td:nth-of-type(7):before, .page-holy-fire-student-list td:nth-of-type(7):before {
    content: "Teacher";
  }
}
/* line 4, ../sass/pages/_membership-requirements.scss */
.node-type-page .popup-element-body .view-lrmt-listing ul {
  list-style-type: none;
  margin-top: 0;
  padding: 0;
}
/* line 9, ../sass/pages/_membership-requirements.scss */
.node-type-page .popup-element-body .view-lrmt-listing li {
  padding: 0 !important;
  margin: 0 !important;
}
/* line 12, ../sass/pages/_membership-requirements.scss */
.node-type-page .popup-element-body .view-lrmt-listing li p {
  margin: 0;
}

/* line 4, ../sass/pages/_user_register.scss */
.page-user-register #field-phone-number-add-more-wrapper .tabledrag-toggle-weight {
  display: none;
}

/* line 2, ../sass/layouts/_block-columns.scss */
.block-col-50,
.blocks-as-columns {
  float: none;
  clear: both;
  margin-bottom: 24px;
  box-sizing: content-box;
}

@media all and (min-width: 960px) {
  /* line 12, ../sass/layouts/_block-columns.scss */
  .block-col-50 {
    width: 48%;
  }
  /* line 15, ../sass/layouts/_block-columns.scss */
  .block-col-50:nth-child(even) {
    float: left;
    clear: both;
  }
  /* line 20, ../sass/layouts/_block-columns.scss */
  .block-col-50:nth-child(odd) {
    float: right;
    clear: right;
  }

  /* line 26, ../sass/layouts/_block-columns.scss */
  .blocks-as-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  /* line 32, ../sass/layouts/_block-columns.scss */
  .blocks-as-columns.item-width-50 .panel-pane {
    max-width: 48%;
  }
  /* line 37, ../sass/layouts/_block-columns.scss */
  .blocks-as-columns.item-width-33 .panel-pane {
    max-width: 32%;
  }
  /* line 42, ../sass/layouts/_block-columns.scss */
  .blocks-as-columns.item-width-25 .panel-pane {
    max-width: 24%;
  }
}
