@charset "UTF-8";
/*doc
---
title: Colors
name: 00_color
category: Helper SASS
---

| SASS var   | Color | Example |
|---|---|---|
| `$color-text` | `#6F6858` | <div style="color: blue">class</div> |
| $color-primary | rgb(159,214,226) | |
| $color-secondary| rgb(254,196,108) | |
| $color-highlight | rgb(210,94,100) | |

*/
.site-nav--sub-menu, .site-nav--menu, ul.zemError li, .content-secondary ul,
.content-tertiary ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-indent: 0;
}

.site-nav--menu > li > a:before, .content-secondary--inner:before, .content-primary article > h2:first-of-type:after, .content-primary ul li:before {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #fec46c;
  display: inline-block;
  border-radius: 25%;
  border-width: 1px 2px;
  background-color: #FFF;
}

.site-logo {
  margin: 0;
  padding: 0;
}

.faq--show-all, .faq--question {
  border: 0;
  background: none;
  text-align: left;
  outline: none;
}

.site-footer--cta a, .site-nav--menu > li > a {
  font-family: "SinglesvilleScript", cursive;
  letter-spacing: 0.03em;
}

.clearfix, .site-wrapper, .content-wrapper, .site-footer--inner, .success-photos, ul.buttons, .content-primary article {
  *zoom: 1;
}
.clearfix:before, .site-wrapper:before, .content-wrapper:before, .site-footer--inner:before, .success-photos:before, ul.buttons:before, .content-primary article:before, .clearfix:after, .site-wrapper:after, .content-wrapper:after, .site-footer--inner:after, .success-photos:after, ul.buttons:after, .content-primary article:after {
  display: table;
  content: " ";
  line-height: 0;
}
.clearfix:after, .site-wrapper:after, .content-wrapper:after, .site-footer--inner:after, .success-photos:after, ul.buttons:after, .content-primary article:after {
  clear: both;
}

.content-primary img, .content-primary_home img {
  border-radius: 0.75em;
  padding: 2px;
  background-color: white;
  border: 1px solid #6F6858;
}

/*doc
---
title: Media Queries
name: 01_media-queries
category: Helper SASS
---

# Breakpoints, media query mixins

*/
@-ms-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
/*----------------------------------------------------=BREAKPOINT MAP */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/**
 * @license
 * MyFonts Webfont Build ID 3151174, 2016-01-09T14:18:16-0500
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed ../fonts(s).
 * 
 * You may obtain a valid license at the URLs below.
 * 
 * Webfont: SinglesvilleScript by Font Diner
 * URL: http://www.myfonts.com/fonts/fontdiner/singlesville-script/script/
 * Copyright: Copyright (c) Font Diner, 2005. All rights reserved.
 * Licensed pageviews: 10,000
 * 
 * 
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=3151174
 * 
 * © 2016 MyFonts Inc
*/
/* Webfont: SinglesvilleScript */
@font-face {
  font-family: "SinglesvilleScript";
  src: url("../fonts/SinglesvilleScript.eot"); /* IE9 Compat Modes */
  src: url("../fonts/SinglesvilleScript.eot?#iefix") format("embedded-opentype"), url("../fonts/SinglesvilleScript.woff") format("woff"), url("../fonts/SinglesvilleScript.ttf") format("truetype"), url("../fonts/SinglesvilleScript.svg#SinglesvilleScript") format("svg"); /* Legacy iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/*doc
---
title: Links
name: 01_links
category: Typography
---

```html_example_table

<a href="http://www.google.com">Visit Google.</a>

<a href="/">Visit PoMO.</a>

```
*/
a:link {
  text-decoration: none;
  color: #d25e64;
  outline: none;
}

a:visited {
  color: rgb(226.7111650485, 153.7888349515, 157.5606796117);
}

a:hover, a:focus {
  color: #6F6858;
  border-bottom: 1px dotted #6F6858;
}

h2 a, .search-result h3 a {
  color: #6F6858;
}

/* External links */
.content-primary a[href^=http] {
  padding-right: 0.8em;
  background: url(../img/ext.png) 98% 1px no-repeat;
  background-size: 9px;
}

.content-primary a[href*=peaceofmindorganizing] {
  padding-right: 0;
  background: none;
}

.site-footer a[href^=http],
.content-primary a[href^="http://peaceofmindorganizing.com"],
.content-primary a[href^="http://www.peaceofmindorganizing.com"],
.content-primary a[href^="http://www.amazon.com"],
.content-primary a[href^="http://www.polldaddy.com"],
.content-primary a[href^="http://answers.polldaddy.com"],
.content-primary a.ec_ejc_thkbx {
  padding-right: 0;
  background-image: none;
}

/*doc
---
title: Lists
name: 00_lists
category: Typography
---
*/
.content-primary ul, .content-primary ol {
  margin-bottom: 1.5em;
  margin-left: 32px;
  padding-left: 0;
}

.content-primary ul {
  list-style: none;
}

.content-primary ol {
  list-style: decimal;
}

.content-primary li {
  line-height: 1.5em;
  margin-bottom: 0.75em;
}

.content-primary ul li {
  text-indent: -16px;
}
.content-primary ul li:before {
  transform: scale(0.7);
  left: -4px;
  top: 2px;
}

.content-secondary li,
.content-tertiary li {
  margin-bottom: 0.75em;
}

ul.noMarker li {
  list-style-image: none;
  list-style-type: none;
}
ul.noMarker li:before {
  content: none;
  display: none;
}

.faq--question {
  display: block;
  padding: 0.75em 0;
  font-weight: bold;
}
.faq--question:before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border: 2px solid #6F6858;
  border-width: 0 2px 2px 0px;
  transform: rotate(45deg);
  transition: transform 300ms;
}

.faq--question.collapsed:before {
  transform: rotate(-45deg);
}

.faq--answer {
  margin: 0 0 0 0.75em;
}

/*doc
---
title: Miscellaneous
name: 03_miscellaneous
category: Typography
---

## Top-level heading. First one is special. `h2, .h_2 32px/32px`

Body font style `16px/24px`. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

## Subsequent second-level heading. `h2, .h_2 32px/32px`

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

### Level 3 heading. `h3, .h_3 20px/24px`

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

#### Level 4 heading. `h4, .h_4 14px/20px`

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

*/
body {
  font-family: "Raleway", Helvetica, Arial, clean, sans-serif;
  font-weight: 400;
  color: #6F6858;
}

/* P, BLOCKQUOTE ____________________________ */
p {
  line-height: 1.5em;
  margin-top: 0;
  margin-bottom: 0.75em;
}

h1, h2, h3, h4, h5,
.h_1, .h_2, .h_3, .h_4, .h_5 {
  font-family: "Raleway", Helvetica, Arial, clean, sans-serif;
  font-weight: 600;
}

h2, .h_2 {
  font-size: 2em;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h3, .h_3 {
  font-size: 1.25em;
  line-height: 1.2em;
  margin-top: 0.6em;
  margin-bottom: 0.3em;
}

h4 {
  font-style: italic;
  font-size: 1em;
  line-height: 1.4286em;
  margin: 0 0 0.7143em 30px;
}

blockquote {
  line-height: 1.4286em; /* 20px */
  margin: 0 2em 0.75em 1em;
  padding-left: 0.5em;
  border-left: 3px solid #fec46c;
}
@media (min-width: 47.5em) {
  blockquote {
    margin-left: 2em;
  }
}

.quotee {
  text-align: right;
  font-style: italic;
  margin-top: -0.75em;
  margin-bottom: 2.25em;
}

.content-primary article > h2:first-of-type {
  position: relative;
  border-bottom: 2px solid #d25e64;
  text-transform: uppercase;
}
.content-primary article > h2:first-of-type:after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: auto;
  border-color: #d25e64;
}
.content-primary article > h2:first-of-type::first-letter {
  font-size: 1.2em;
}

.content-primary_blog h2:first-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  text-transform: none;
}
.content-primary_blog h2:first-of-type:after {
  display: none;
}
.content-primary_blog h2:first-of-type::first-letter {
  font-size: inherit;
}

body[class*=ynab] .content-primary article > h2:first-of-type::first-letter {
  font-size: inherit;
}

.article--content {
  max-width: 40em;
}

.timestamp {
  color: #9fd6e2;
}

.event {
  margin-left: 30px;
  margin-bottom: 1.4286em;
  padding: 0.7143em 14px;
  border-left: 3px solid #fec46c;
  background: url("../images/whiteBG.png") 0 0 repeat;
}

.event p, .date, .time, .location, .address {
  line-height: 1.4286em; /* 20px */
  margin: 0 0 0.7143em 0; /* 10px */
  width: auto;
}

.date, .location {
  margin-bottom: 0;
}

.event div span {
  font-weight: bold;
}

.event h3 {
  margin-bottom: 0.625em;
  margin-left: -10px;
  padding-left: 10px;
  border-bottom: 1px dotted #fec46c;
}

.event h4 {
  font-style: italic;
  font-size: 1.143em; /*16px*/
  line-height: 1.25em; /* 20px */
  margin: 1.25em 0 0.625em 0; /* 10px */
}

.event ul li {
  margin-left: 0;
}

.content-secondary p, .content-tertiary p {
  font-size: 0.875em;
  line-height: 1.71428em;
}

.search-result h3 {
  margin: 0;
  padding: 0;
}

.vcard h3 {
  margin-left: 0;
  font-weight: normal;
}

h3.error {
  color: #fec46c;
  font-size: 164%;
  margin-bottom: 0.5em;
}

/* ______________________________________ BUTTONS */
ul.buttons {
  margin-bottom: 1.5em;
  margin-top: 1.5em;
}

.blogBody ul.buttons {
  margin-top: 0;
  padding-left: 0;
}

ul.buttons li {
  list-style-image: none;
  list-style-type: none;
  margin: 0;
}

.buttons a {
  display: inline-block;
  float: left;
  text-indent: -9999px;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  border-radius: 0.25em;
  background: #d25e64 url("../img/social-icons.png") 0 0 no-repeat;
}

.buttons a:hover {
  background-color: #6F6858;
  text-decoration: none;
  border-bottom: 0;
}

.buttons .facebookLink {
  background-position: -70px 0;
  background-color: #3b5998;
}

.buttons .twitterLink {
  background-position: 0 0;
  background-color: #55acee;
}

.buttons .rssLink {
  background-position: -140px 0;
}

.buttons .rssEmailLink {
  background-position: -210px 0;
}

/* CITE, EM, STRONG, SUP ____________________________ */
cite, em {
  font-style: italic;
}

cite.short {
  font-style: normal;
}

strong {
  font-weight: bold;
}

sup, sub {
  font-size: 0.833em;
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

/* VCARDs ______________________________ */
.vcard {
  margin-left: 30px;
}

.vcard p {
  margin-left: 0;
  font-weight: normal;
}

.vcard div {
  line-height: 1.4286em; /*line-height of 20px*/
  padding: 0;
}

.adr, .phone, .email {
  margin: 0 0 0.7143em 0;
}

.vcard div div {
  margin-left: 0;
}

.family-name {
  display: none;
}

/*doc
---
title: Forms
name: 02_forms
category: Base
---

## some stuff about forms

*/
form {
  line-height: 1.5em;
  clear: both;
  margin-top: 1.4286em;
  border: 1px dotted #6F6858;
  background: rgba(255, 255, 255, 0.5);
}

#search form {
  border: none;
}

legend {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

form div {
  clear: both;
}

fieldset {
  border: none;
}

fieldset div {
  margin: 0.5em 0;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 0.25em;
  font-size: 1em;
  color: #6F6858;
  font-family: inherit;
  border: 1px solid #6F6858;
  border-radius: 0.25em;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus {
  border-color: #d25e64;
}

label {
  display: block;
  padding: 0.25em 0;
}

.checkbox label {
  display: inline-block;
}

label.zemRequired,
label.required {
  font-weight: bold;
}

.submit {
  margin-top: 0.75em;
}

.btn, .site-footer--cta a, input[type=submit], .faq--show-all {
  display: block;
  width: 100%;
  padding: 0.375em;
  color: #FFF;
  background-color: #9fd6e2;
  border: 1px solid #9fd6e2;
  border-radius: 0.25em;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  outline: none;
  text-align: center;
}
.btn:hover, .site-footer--cta a:hover, input[type=submit]:hover, .faq--show-all:hover, .btn:focus, .site-footer--cta a:focus, input[type=submit]:focus, .faq--show-all:focus {
  background-color: #6F6858;
  border-color: #6F6858;
}

.btn_inline {
  display: inline-block;
  width: auto;
}

#eventSignupForm span {
  padding-left: 5px;
}

.zemError,
.zemRequirederrorElement {
  color: #d25e64;
}

span.error {
  font-weight: bold;
}

/* form in sidebar - labels over inputs */
/*doc
---
title: Layout
name: 01_layout
category: Base
---

# Layout - basic page sections

*/
html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #6F6858;
}
@media (min-width: 63.75em) {
  body {
    background-image: url(data:image/gif;base64,R0lGODlhEAEFAIAAAP7EbAAAACH5BAAAAAAALAAAAAAQAQUAAAIjhI+py+0Po5y02ouz3rz7D4biSJbmiabqyrbuC8fyTNf2bRYAOw==);
    background-repeat: repeat-y;
  }
}

.content-primary--inner {
  padding: 1em;
}

.content-secondary, .content-tertiary {
  padding: 2.125em 1em 1em;
}

.content-secondary--inner {
  padding: 1em 0;
  position: relative;
  border-top: 2px solid #9fd6e2;
}
.content-secondary--inner:before {
  position: absolute;
  top: -9px;
  left: 0;
  border-color: #9fd6e2;
}

.content-secondary *:first-child {
  margin-top: 0;
}

@media (min-width: 47.5em) {
  .site-wrapper {
    padding-top: 40px;
  }
  .content-primary--inner {
    padding: 0 2em;
  }
  .content-secondary, .content-tertiary {
    padding-left: 2em;
    padding-right: 2em;
  }
  .content-secondary--article {
    float: left;
    width: 50%;
  }
  .content-secondary--article:nth-child(n+2) {
    padding-left: 1em;
  }
}
@media (min-width: 63.75em) {
  .content-wrapper {
    float: left;
    width: calc(100% - 17em);
  }
  .content-primary {
    margin: 0;
  }
}
@media (min-width: 75em) {
  .content-wrapper {
    max-width: 70em;
  }
  .content-primary, .content-secondary, .content-tertiary {
    float: left;
  }
  .content-primary {
    width: calc(100% - 17em);
  }
  .content-secondary, .content-tertiary {
    width: 17em;
    padding-left: 1em;
    padding-right: 1em;
  }
  .content-secondary--article {
    float: none;
    width: auto;
  }
  .content-secondary--article:nth-child(n+2) {
    padding-left: 0;
  }
}
/*doc
---
title: Navigation
name: 01_navigation
category: Chrome Styles
---

```
<nav class="site-nav" id="js-site-nav">
	<a href="#" id="js-close-nav" class="close-nav">Close</a>
	<ul class="site-nav--menu">
		<li id="services"><a href="http://www.peaceofmindorganizing.com/services">Services</a>
			<ul class="site-nav--sub-menu">
				<li><a rel="bookmark" href="http://www.peaceofmindorganizing.com/services/team-organizing">Operation: Peace of Mind</a></li>
			</ul>
		</li>
	</ul>
</nav>
```

*/
.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fec46c;
  transform: translate(-100%, 0);
  transition: all 500ms ease-in-out;
  z-index: 20;
}

.site-nav_open {
  transform: translate(0, 0);
}

.site-nav--menu {
  height: 100vh;
  overflow-y: scroll;
  margin: 0 0.2em 0 0;
  padding: 0.5em 0 0 0.5em;
  background: #FFF;
}

@media (min-width: 63.75em) {
  .site-nav {
    position: static;
    float: left;
    width: 17em;
    transform: none;
  }
  .site-nav--menu {
    height: auto;
    overflow: initial;
    margin: 0 0.2em 0 0;
    border-radius: 0 0.5em 0.5em 0;
  }
}
.site-nav--menu > li {
  margin: 0;
  padding: 0;
}

.site-nav--menu a {
  display: block;
  text-decoration: none;
  color: #6F6858;
  transition: color 500ms;
}

.site-nav--menu > li > a {
  font-size: 48px;
  line-height: 1em;
  position: relative;
}

.site-nav--menu a:hover,
.site-nav--menu a:focus,
.site-nav--menu a:active {
  color: #d25e64;
  border: 0;
}

.site-nav--menu > li > a:before {
  margin-right: 8px;
}

.site-nav--menu > li > a:after {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 16px;
  height: 22.4px;
  background: url("../img/checks.gif") 0 0 no-repeat;
  background-size: 100% auto;
}

.site-nav--menu > li > a:hover:after,
.site-nav--menu > li > a:focus:after,
.site-nav--menu > li > a:active:after,
.site-nav--menu > .current > a:after {
  display: inline-block;
}

.site-nav--menu > li > a:visited:after {
  background-position: 0 -50px;
  display: inline-block;
}

.site-nav--sub-menu {
  padding-bottom: 10px;
  font-size: 0.875em; /* 14px */
  background-color: white;
}

.site-nav--sub-menu li {
  margin-left: 0;
  line-height: 1.28571em; /* 18px */
  margin-bottom: 0; /* 6px */
}

.site-nav--sub-menu li a {
  padding: 0.214286em 0 0.214286em 24px;
}

.site-nav--sub-menu li a:before {
  content: "";
  display: none;
  width: 8px;
  height: 8px;
  background-color: #6F6858;
  border-radius: 2px;
  position: relative;
  margin-left: -8px;
  left: -8px;
}

.site-nav--sub-menu li a:hover:before,
.site-nav--sub-menu li a:focus:before,
.site-nav--sub-menu li a:active:before,
.site-nav--sub-menu .current a:before {
  display: inline-block;
}

/*doc
---
title: Header
name: 00_header
category: Chrome Styles
---

*/
.site-logo {
  background: url("../img/pattern_sm.png") 100% 100% repeat;
  background-clip: content-box;
  background-size: auto 24px;
  height: 64px;
  padding-top: 16px;
}

.site-logo a {
  display: block;
  position: absolute;
  height: 85px;
  aspect-ratio: 32/23;
  top: 0;
  left: 10px;
  text-indent: -9999px;
  background: transparent url("../img/POMOLogo-20-Years.svg") 50% 50% no-repeat;
  background-size: contain;
  border: 0;
  text-decoration: none;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.site-slogan {
  text-align: left;
  padding-left: 145px;
  padding-top: 0.25em;
  font-size: 12px;
}

.open-nav, .close-nav {
  position: absolute;
  display: block;
  top: 23px;
  right: 9px;
  padding: 1px 8px;
  background: #fff;
  border-radius: 0.25em;
  font-size: 14px;
  line-height: 30px;
  z-index: 10;
  border: 1px solid #d25e64;
}
.open-nav:hover, .open-nav:focus, .close-nav:hover, .close-nav:focus {
  border: 1px solid #d25e64;
}

@media (min-width: 47.5em) {
  .site-slogan {
    font-size: inherit;
  }
}
@media (min-width: 63.75em) {
  .site-logo {
    background-size: auto 36px;
    background-position: 0 100%;
    height: 95.9976px;
    padding-top: 23.99976px;
  }
  .site-logo a {
    display: block;
    position: absolute;
    height: 120px;
    left: auto;
    right: 10px;
  }
  .site-slogan {
    text-align: right;
    padding-right: 180px;
  }
  .open-nav, .close-nav {
    display: none;
  }
}
/*doc
---
title: Footer
name: 02_footer
category: Chrome Styles
---

```
<footer class="site-footer">
	<div class="site-footer--inner">Some footer content here.</div>
</footer>

```

*/
.site-footer {
  position: relative;
  border: 1px dotted #fec46c;
  border-width: 1px 0;
  margin: 50px 0;
  padding: 1em;
}

.site-footer--inner {
  font-size: 0.6875em;
  line-height: 1.81818em;
}

.site-footer--cta a {
  padding: 0.4em 0.3em 0.3em 0.3em !important;
  margin-bottom: 0.25em;
  font-size: 4.363636em;
}

.decorative-footer-border {
  display: none;
}

@media (min-width: 47.5em) {
  .site-footer--cta {
    float: left;
    display: block;
    width: 30%;
    color: #FFF;
    text-align: center;
    margin-right: 10px;
  }
}
@media (min-width: 63.75em) {
  .site-footer {
    padding-left: 19em;
  }
  .decorative-footer-border {
    display: block;
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: 0;
    width: 17em;
    border: 1px dotted #FFF;
    border-width: 1px 0;
  }
}
/*doc
---
title: Media
name: media
category: Media
---

*/
.imgR p, .imgC p, .imgL p {
  margin: 0;
  padding: 0;
  font-size: 0.875em;
  font-style: italic;
}

.imgR img, .imgC img, .imgL img {
  max-width: 100%;
}

@media (min-width: 31.25em) {
  .imgR, .imgL {
    width: 33.33%;
  }
  .imgL {
    float: left;
    margin: 0.25em 1.5em 0.25em 0;
    text-align: left;
  }
  .imgR {
    float: right;
    margin: 0.25em 0 0.25em 1.5em;
    text-align: right;
  }
  .imgC {
    width: 100%;
    margin: 0.25em 0;
    text-align: center;
  }
}
body[class*=ynab] .content-primary img,
.content-primary .noBorder img,
img[alt="Janine's signature"] {
  border: 0;
  border-radius: 0;
}

.scrollable-panel, .scrollable-panel--inner {
  position: relative;
  height: 24em;
}

.scrollable-panel {
  border-top: 1px solid #9fd6e2;
  overflow: hidden;
}

.scrollable-panel--inner {
  overflow-y: scroll;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5em;
}

.scrollable-panel:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: -14px;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.25);
  border-top: 1px solid #9fd6e2;
}

/*resizing image with css -- sorry! */
.prodImg {
  float: left;
  margin: 0 10px 0 30px;
  border: 1px solid #6F6858;
}

.clearBoth {
  clear: both;
}

/* before and after pics table styles */
.success-photos {
  text-align: center;
  padding: 1.5em 0.75em;
  border-bottom: 1px solid #6F6858;
}

.success-photos img {
  border-radius: 0;
  padding: 0;
  border: none;
  width: 100%;
}

.success-photo_before, .success-photo_after {
  position: relative;
  padding: 0 0 1px 0;
}
.success-photo_before:before, .success-photo_after:before {
  position: absolute;
  content: "before";
  display: block;
  padding: 0.25em 0.5em;
  text-transform: uppercase;
  bottom: 1em;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
}

.success-photo_after {
  padding: 1px 0 0 0;
}
.success-photo_after:before {
  content: "after";
  left: auto;
  right: 0;
  bottom: auto;
  top: 1em;
}

@media (min-width: 47.5em) {
  .success-photo_before, .success-photo_after {
    float: left;
    width: 50%;
    padding: 0 1px 0 0;
  }
  .success-photo_after {
    padding: 0 0 0 1px;
  }
  .success-photo_after:before {
    top: auto;
    bottom: 1em;
  }
}
/* before and after popup styles */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role=button] {
  cursor: pointer;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

/*.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}*/
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}*/
.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

/*.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}*/
.hidden {
  display: none !important;
}

/*.affix {
  position: fixed;
}*/
.callout-one {
  padding: 1em;
  border-radius: 0.75em;
  border: 0.5px solid #9fd6e2;
  background: rgba(159, 214, 226, 0.2);
  box-shadow: 1px 0 6px rgba(0, 0, 0, 0.05);
}

.callout-one a {
  color: #CC2F37;
}

@media (min-width: 47.5em) {
  .callout-one {
    margin-left: -1em;
    margin-right: -1em;
  }
}/*# sourceMappingURL=pomo.css.map */