/******************************************************************
Site Name: message salon
Author: Brogramming.com

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
/* Variables */
:root {
  /* Font Family */
  --global--font-primary: var(--font-headings, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
  --global--font-secondary: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
  /* Font Size */
  --global--font-size-base: 1.25rem;
  --global--font-size-sm: 1rem;
  --global--font-size-md: 1.6875rem;
  --global--font-size-lg: 2.5rem;
  --global--font-size-xl: 3.125rem;
  --global--font-size-page-title: 2.25rem;
  --global--letter-spacing: normal;
  --global--letter-spacing-lg: -0.03em;
  /* Line Height */
  --global--line-height-body: 1.3em;
  --global--line-height-heading: 1em;
  --global--line-height-page-title: 0.9em;
  /* Headings */
  --heading--font-weight: normal;
  --heading--font-weight-page-title: 900;
  --heading--font-weight-strong: 600;
  /* Grid */
  --global--gutter: 1.5rem;
}
/* 
@media only screen and (min-width: 652px) { // Not using the mixin because it's compiled after this file
	:root {
		--global--font-size-xl: 2.5rem; // 40px / 16px
		--global--font-size-xxl: 6rem; // 96px / 16px
		--global--font-size-xxxl: 9rem; // 144px / 16px
		--heading--font-size-h3: 2rem; // 32px / 16px
		--heading--font-size-h2: 3rem; // 48px / 16px
	}
}
 */
@media only screen and (min-width: 667px) {
  :root {
    /* Font Size */
    --global--font-size-base: 1.375rem;
    --global--font-size-md: 2.5rem;
    --global--font-size-lg: 3.75rem;
    --global--font-size-xl: 4.625rem;
    --global--font-size-page-title: 3.375rem;
  }
}
@media only screen and (min-width: 960px) {
  :root {
    /* Grid */
    --global--gutter: 1.5rem;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/**
 * Reset specific elements to make them easier to style in other contexts.
 */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
/**
 * Apply generic border-box to all elements.
 * See:
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
html {
  /* Apply border-box across the entire page. */
  box-sizing: border-box;
  /* font-family: var(--global--font-secondary);
	line-height: var(--global--line-height-body); */
}
/**
 * Relax the definition a bit, to allow components to override it manually.
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}
/* body {
	font-size: var(--global--font-size-base);
	font-weight: normal;
	color: var(--global--color-primary);
	text-align: left;
	background-color: var(--global--color-background);
} */
button {
  cursor: pointer;
}
/******************************************************************
Site Name: message salon
Author: Brogramming.com

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' great features: 
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques like box shadow and
border-radius.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more. 

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*@bones-blue:        lighten(rgb(0,159,238), 10%);*/
/*@text-color:        lighten(@black, 10%);*/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
.color-accent {
  color: #ff3333;
}
.color-text {
  color: #000;
}
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the 
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('../fonts/font-name.eot');
    	src: url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('../fonts/font-name.woff') format('woff'),
             url('../fonts/font-name.ttf') format('truetype'),
             url('../fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/* font-sizes */
.font-sm {
  font-size: var(--global--font-size-sm);
  line-height: var(--global--line-height-body);
}
.font-md {
  font-size: var(--global--font-size-md);
  line-height: var(--global--line-height-heading);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
}
.font-lg {
  font-size: var(--global--font-size-lg);
  line-height: var(--global--line-height-heading);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
}
.font-xl {
  font-size: var(--global--font-size-xl);
  line-height: var(--global--line-height-heading);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
  overflow-wrap: break-word;
}
.font-page-title {
  font-size: var(--global--font-size-page-title);
  line-height: var(--global--line-height-page-title);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
}
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.alert {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}
.alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #e8dc59;
  background: #ebe16f;
}
.alert-info {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #bfe4f4;
  background: #d5edf8;
}
.alert-error {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #f8cdce;
  background: #fbe3e4;
}
.alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #deeaae;
  background: #e6efc2;
}
/* icons */
.material-icons.md-18 {
  font-size: 18px;
}
.material-icons.md-24 {
  font-size: 24px;
}
.material-icons.md-36 {
  font-size: 36px;
}
.material-icons.md-48 {
  font-size: 48px;
}
.material-icons.md-72 {
  font-size: 72px;
}
.material-icons-pseudo {
  font-family: "Material Icons";
  font-feature-settings: "liga" 1;
  letter-spacing: normal;
  font-size: 72px;
}
.icon-triangle {
  /* content: "►";
    transform: translateX(-0.1em);
    display: block;
    .font-lg();
    .color-accent(); */
  display: block;
  content: "";
  transform: translateY(10%);
  background: transparent;
  padding: 0;
  width: 0;
  height: 0;
  border-width: var(--global--font-size-sm) 0 var(--global--font-size-sm) var(--global--font-size-sm);
  border-color: transparent transparent transparent #ff3333;
  border-style: solid;
  border-radius: 0;
}
.icon-triangle.button:hover,
.icon-trianglebutton:hover {
  border-left-color: #000;
}
.icon-triangle.button:active,
.icon-trianglebutton:active {
  border-left-color: #ff3333;
}
.icon-zoom {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='26.02' height='26.02' version='1.1' viewBox='0 0 6.8844 6.8845' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(-157.58 -116)'%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  width: var(--global--font-size-base);
  height: var(--global--font-size-base);
  border: none;
  border-radius: 0;
  padding: 10px;
  display: inline-block;
}
.icon-zoom.button:hover,
.icon-zoombutton:hover {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='26.02' height='26.02' version='1.1' viewBox='0 0 6.8844 6.8845' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(-157.58 -116)'%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.icon-zoom.button:active,
.icon-zoombutton:active {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='26.02' height='26.02' version='1.1' viewBox='0 0 6.8844 6.8845' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(-157.58 -116)'%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
/*********************
ALIGNMENT
*********************/
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: .border-radius(4px); 

*/
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdo it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0,0,4px,0,#444); */
/* .boxShadow(none); */
/*********************
BUTTONS
*********************/
.button,
.button:visited {
  border: 1px solid #f00000;
  border-top-color: #ff0f0f;
  border-left-color: #ff0f0f;
  padding: 4px 12px;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  line-height: 21px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #ff3333;
  outline: none;
}
.button:hover,
.button:visited:hover,
.button:focus,
.button:visited:focus {
  color: #fff;
  border-color: #f00000;
  border-top-color: #cc0000;
  border-left-color: #cc0000;
  background-color: #ff1919;
}
.button:active,
.button:visited:active {
  background-color: #ff0000;
}
.transparent-button,
.transparent-button:visited {
  color: #000;
  border: none;
  background-color: transparent !important;
  line-height: 1em;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.transparent-button:hover,
.transparent-button:visited:hover,
.transparent-button:focus,
.transparent-button:visited:focus,
.transparent-button:active,
.transparent-button:visited:active {
  color: #ff3333;
}
/*********************
DISPLAY & VISIBILITY
*********************/
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
/*
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*/
/******************************************************************
Site Name: message salon
Author: Brogramming.com

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

------------ MAP ------------

01. GENERAL STYLES
02. WORDPRESS BODY CLASSES
03. LAYOUT & GRID STYLES
04. LINK STYLES
05. H1, H2, H3, H4, H5 STYLES
06. HEADER SYTLES
07. NAVIGATION STYLES
08. POSTS & CONTENT STYLES
09. PAGE NAVI STYLES
10. COMMENT STYLES
11. COMMENT FORM STYLES
12. SIDEBARS & ASIDES
13. FOOTER STYLES

******************************************************************/
/*********************
01. GENERAL STYLES
*********************/
html {
  scroll-behavior: smooth;
}
body {
  font-size: var(--global--font-size-base);
  line-height: var(--global--line-height-body);
  color: #000;
  background-color: #fff;
}
html,
body,
button,
input,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}
/********************
02. WORDPRESS BODY CLASSES
    style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* blog template page */
.home {
  /* home page */
}
.home .hentry {
  margin-top: var(--global--gutter);
  padding-bottom: var(--global--gutter);
}
.home .hentry.sticky {
  padding: 0;
  border-bottom: 1px solid #ff3333 !important;
}
.home .hentry.sticky .entry-summary {
  margin-bottom: calc(var(--global--gutter) * 2);
}
.home .hentry.sticky .entry-summary h1,
.home .hentry.sticky .entry-summary h2,
.home .hentry.sticky .entry-summary h3 {
  margin-bottom: var(--global--line-height-page-title);
}
.home .hentry.sticky .entry-summary h1 {
  font-size: var(--global--font-size-xl);
  line-height: var(--global--line-height-heading);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
  overflow-wrap: break-word;
}
.home .hentry.sticky .entry-summary h2 {
  font-size: var(--global--font-size-lg);
  line-height: var(--global--line-height-heading);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
}
.home .hentry.sticky .entry-summary h3 {
  font-size: var(--global--font-size-md);
  line-height: var(--global--line-height-heading);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
}
.home .hentry .article-header {
  margin-bottom: 0;
}
.search,
.archive {
  /* search, archive page */
}
.search .hentry,
.archive .hentry {
  border-top: 1px solid #ff3333;
  padding: var(--global--gutter) 0;
  margin: 0;
}
.search .hentry header,
.archive .hentry header,
.search .hentry section,
.archive .hentry section,
.search .hentry figure,
.archive .hentry figure {
  padding: 0;
}
.search .hentry a[rel="bookmark"]:hover,
.archive .hentry a[rel="bookmark"]:hover,
.search .hentry a[rel="bookmark"]:focus,
.archive .hentry a[rel="bookmark"]:focus {
  background-color: #f8f8f8;
}
.search .hentry a[rel="bookmark"]:hover .article-preview,
.archive .hentry a[rel="bookmark"]:hover .article-preview,
.search .hentry a[rel="bookmark"]:focus .article-preview,
.archive .hentry a[rel="bookmark"]:focus .article-preview {
  background-color: #f8f8f8;
}
.search:not(.tax-artist) .hentry:first-of-type,
.archive:not(.tax-artist) .hentry:first-of-type {
  border-top: none;
}
.search .article-header,
.archive .article-header {
  margin-bottom: 0;
}
.search .article-header .flex-grid,
.archive .article-header .flex-grid {
  display: flex;
  flex-direction: column;
}
.search .article-header .flex-grid hgroup.fourcol,
.archive .article-header .flex-grid hgroup.fourcol {
  display: contents;
}
.search .article-header .flex-grid hgroup.fourcol h1,
.archive .article-header .flex-grid hgroup.fourcol h1 {
  order: 0;
}
.search .article-header .flex-grid hgroup.fourcol h2,
.archive .article-header .flex-grid hgroup.fourcol h2 {
  order: 2;
}
.search .article-header .flex-grid .tags.artists,
.archive .article-header .flex-grid .tags.artists {
  order: 1;
}
.search .article-header .flex-grid .entry-dates,
.archive .article-header .flex-grid .entry-dates {
  order: 3;
}
.search .article-preview,
.archive .article-preview {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.search .article-preview:after,
.archive .article-preview:after {
  font-family: "Material Icons";
  font-feature-settings: "liga" 1;
  letter-spacing: normal;
  font-size: 72px;
  content: "arrow_right";
  color: #ff3333;
  vertical-align: middle;
  margin-left: -30px;
}
.search .article-figure,
.archive .article-figure {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-bottom: var(--global--gutter);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search .article-figure:before,
.archive .article-figure:before {
  /* aspect-ratio 1:1 */
  content: "";
  float: left;
  padding-top: 100%;
}
.search .article-figure img,
.archive .article-figure img {
  margin: 0;
}
.archive {
  /* archive page */
}
.archive .hentry .article-figure {
  overflow: hidden;
}
.archive .hentry .article-figure img {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.archive .hentry a[rel="bookmark"]:hover .article-figure img,
.archive .hentry a[rel="bookmark"]:focus .article-figure img {
  transform: translateZ(0) scale(1.05);
}
.archive .hentry a[rel="bookmark"]:hover .article-preview,
.archive .hentry a[rel="bookmark"]:focus .article-preview {
  background-color: #f8f8f8;
}
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
.single,
.page {
  /* single post page */
}
.single #main .hentry,
.page #main .hentry {
  padding: var(--global--gutter) 0;
}
.single #main .hentry .article-header,
.page #main .hentry .article-header {
  padding-bottom: var(--global--gutter);
  border-bottom: 1px solid #ff3333;
}
.single #main .hentry .article-header > *,
.page #main .hentry .article-header > * {
  margin-bottom: var(--global--line-height-body);
}
.single #main .hentry .article-header ul,
.page #main .hentry .article-header ul {
  list-style-type: none;
}
.single #main .hentry .article-header ul a:hover,
.page #main .hentry .article-header ul a:hover,
.single #main .hentry .article-header ul a:focus,
.page #main .hentry .article-header ul a:focus {
  color: #ff3333;
}
.single #main .hentry .article-header ul a:hover::before,
.page #main .hentry .article-header ul a:hover::before,
.single #main .hentry .article-header ul a:focus::before,
.page #main .hentry .article-header ul a:focus::before {
  font-family: "Material Icons";
  font-feature-settings: "liga" 1;
  letter-spacing: normal;
  font-size: 72px;
  content: "arrow_right";
  display: inline-block;
  position: absolute;
  transform: translateX(-100%);
  color: #ff3333;
  font-size: 36px;
}
.single #main .hentry .entry-title,
.page #main .hentry .entry-title {
  font-weight: bold;
}
.single #main .hentry .slider,
.page #main .hentry .slider {
  border-bottom: 1px solid #ff3333;
}
.single #main .hentry .slider img,
.page #main .hentry .slider img {
  max-height: 90vh;
  width: auto;
}
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
.category {
  /* category page */
}
.category .archive-title {
  display: none;
}
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
.tax-artist .nav {
  /* highlight current page */
}
.tax-artist .nav li.menu-item-tax-artist a {
  color: #fff;
}
.tax-artist .archive-title {
  font-size: var(--global--font-size-page-title);
  line-height: var(--global--line-height-page-title);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
  color: #ff3333;
  text-transform: lowercase;
}
.tax-artist #inner-content {
  border-top: none;
}
.page #main .page-title,
.page #main .entry-title,
.page #main .article-header > hgroup,
.page #main .article-header > .time {
  display: none;
}
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
.page-template-page_custom-artists {
  /* artist template page */
}
.page-template-page_custom-artists #inner-content {
  border-top: none;
}
.page-template-page_custom-artists #main .hentry {
  padding: 0;
}
.page-template-page_custom-artists #main .article-header {
  display: none;
}
.page-template-page_custom-artists #main .entry-content a[href] {
  color: #000;
}
.page-template-page_custom-artists #main .entry-content a[href]:hover,
.page-template-page_custom-artists #main .entry-content a[href]:focus {
  color: #ff3333;
}
.page-template-page_custom-artists #main .entry-content a[name]:hover,
.page-template-page_custom-artists #main .entry-content a[name]:focus {
  color: #ff3333;
}
.page-template-page_custom-artists #main .entry-content ul {
  list-style-type: none;
}
.page-template-page_custom-artists #main .entry-content #taxonomy-artist-terms-index {
  padding-bottom: 0.75rem;
  position: sticky;
  top: -1px;
  background: white;
  z-index: 2;
  border-bottom: 1px solid #ff3333;
}
.page-template-page_custom-artists #main .entry-content #taxonomy-artist-terms-index li {
  display: inline;
}
.page-template-page_custom-artists #main .entry-content #taxonomy-artist-terms {
  font-size: var(--global--font-size-md);
  line-height: var(--global--line-height-heading);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
  text-transform: lowercase;
}
.page-template-page_custom-artists #main .entry-content #taxonomy-artist-terms > li {
  /* letter parent */
  padding-top: 0.75rem;
  color: #ff3333;
}
.page-template-page_custom-artists #main .entry-content #taxonomy-artist-terms > li:not(:first-of-type) {
  border-top: 1px solid #ff3333;
}
.page-template-page_custom-artists #main .entry-content #taxonomy-artist-terms > li a {
  /* anchor */
  scroll-margin-top: 2em;
}
.page-template-page_custom-artists #main .entry-content #taxonomy-artist-terms ul {
  /* sub-list with artists */
  margin-bottom: 0.75rem;
}
.page-template-page_custom-artists #main .entry-content #taxonomy-artist-terms ul li a:hover:before,
.page-template-page_custom-artists #main .entry-content #taxonomy-artist-terms ul li a:focus:before {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-family: "Material Icons";
  font-feature-settings: "liga" 1;
  letter-spacing: normal;
  font-size: 72px;
  content: "arrow_right";
  display: inline-block;
  position: absolute;
  transform: translateX(-75%);
}
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
03. LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 96%;
  margin: 0 auto;
}
#inner-content {
  border-top: 1px solid #ff3333;
  border-bottom: 1px solid #ff3333;
  padding-bottom: 1em;
  hyphens: auto;
}
.flex-grid.thumbs-grid {
  margin-top: var(--global--gutter);
}
/*********************
04. LINK STYLES
*********************/
a,
a:visited {
  color: #ff3333;
  text-decoration: none;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover,
a:visited:hover,
a:focus,
a:visited:focus {
  color: #000;
}
a:link,
a:visited:link {
  /*
		this highlights links on iPhones/iPads.
		so it basically works like the :hover selector
		for mobile devices.
		*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
/******************************************************************
05. H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  font-weight: 400;
  font-size: 1em;
  margin: 0;
  /*
	if you're going to use webfonts, be sure to check your weights
	http://css-tricks.com/watch-your-font-weight/
	*/
  /* removing text decoration from all headline links */
}
h1.mb,
.h1.mb,
h2.mb,
.h2.mb,
h3.mb,
.h3.mb,
h4.mb,
.h4.mb,
h5.mb,
.h5.mb {
  margin-bottom: var(--global--line-height-body);
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}
/*********************
06. HEADER SYTLES
*********************/
.header {
  position: relative;
  text-transform: lowercase;
  /* search */
}
.header #inner-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0px 0px;
  grid-template-areas: "top-l top-m top-r" "middle-l middle-m middle-r" "bottom-l bottom-m bottom-r";
}
.header #top-header,
.header #top-header > div,
.header #bottom-header {
  display: contents;
}
.header .main-nav-button {
  grid-area: top-l;
  place-self: start;
}
.header #site-title {
  grid-area: middle-m;
}
.header #top-header #logo {
  grid-area: top-m;
}
.header #top-header .top-header-secondary {
  grid-area: top-r;
}
.header #secondary-title {
  grid-area: bottom-m;
}
.header #top-header .last,
.header #top-header .top-header-secondary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header #top-header .last,
.header #top-header #logo {
  flex-grow: 1;
}
.header #logo {
  font-size: var(--global--font-size-page-title);
  line-height: var(--global--line-height-page-title);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
  max-width: 4.5em;
}
.header #logo a {
  display: block;
}
.header #logo a span:not(.char8) {
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header #logo a:hover span {
  transform: revert !important;
}
.header #site-title {
  font-size: var(--global--font-size-page-title);
  line-height: var(--global--line-height-page-title);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
  text-transform: lowercase;
}
.header #main-nav {
  position: absolute;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  display: none;
  background-color: #ff3333;
  color: #000;
  padding: 0.5em 0;
}
.header #secondary-title {
  font-size: var(--global--font-size-page-title);
  line-height: var(--global--line-height-page-title);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
}
.header #secondary-nav {
  display: none;
  position: absolute;
  z-index: 888;
  width: 100vw;
  left: 0;
  top: 100%;
  margin-top: 1.7em;
  background-color: #ff3333;
  color: #000;
  padding: 1.5em 0 2em 0;
}
.header #secondary-nav .nav-title {
  display: block;
}
.header nav .nav li.footer-only {
  display: none;
}
.header nav .main-nav {
  font-size: var(--global--font-size-page-title);
  line-height: var(--global--line-height-page-title);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
  padding: 0.5em 0 1em 0;
}
.header nav .main-nav li {
  /* highlight current page */
  /* end current highlighters */
}
.header nav .main-nav li a {
  color: #000;
}
.header nav .main-nav li a:hover,
.header nav .main-nav li a:focus {
  color: #fff;
}
.header nav .main-nav li.current-menu-item a,
.header nav .main-nav li.current_page_item a,
.header nav .main-nav li.current_page_ancestor a {
  color: #fff;
}
.header nav .secondary-nav {
  padding: 0 0 1em 0;
  text-transform: none;
}
.header nav .secondary-nav li {
  /* highlight current page */
  /* end current highlighters */
}
.header nav .secondary-nav li a {
  color: #fff;
  /* &:hover,
					&:focus,
					small {
						color: @black;

						small {
							color: @white;
						}
					} */
}
.header nav .secondary-nav li a small {
  color: #000;
  transform: translateY(0.5px);
  display: inline-block;
}
.header nav .secondary-nav li.current-menu-item a:before,
.header nav .secondary-nav li.current_page_item a:before,
.header nav .secondary-nav li.current_page_ancestor a:before,
.header nav .secondary-nav li a:hover:before,
.header nav .secondary-nav li a:focus:before {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-family: "Material Icons";
  font-feature-settings: "liga" 1;
  letter-spacing: normal;
  font-size: 72px;
  content: "arrow_right";
  display: inline-block;
  position: absolute;
  transform: translateX(-100%);
  color: #fff;
  font-size: 36px;
}
.header nav .secondary-nav li.link-all {
  margin-top: 0.65em;
}
.header .secondary-nav-button {
  font-size: var(--global--font-size-page-title);
  line-height: var(--global--line-height-page-title);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
  text-transform: lowercase;
  color: #ff3333;
  margin: 0;
  padding: 0;
  transform: none;
  vertical-align: unset;
}
.header .secondary-nav-button:before {
  -webkit-transition: transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out;
  -ms-transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  font-family: "Material Icons";
  font-feature-settings: "liga" 1;
  letter-spacing: normal;
  font-size: 72px;
  content: "arrow_right";
  display: inline-block;
  position: absolute;
  transform: translateX(-90%);
  margin-top: 3px;
  font-size: 55px;
}
.header .secondary-nav-button.open::before {
  transform: translateX(-90%) scaleX(-1);
}
.header a.secondary-nav-button {
  display: none;
}
.header .search-button {
  transform: translateY(0.2em);
}
.header #searchform {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100px;
  width: 100%;
  z-index: 999;
}
.header #searchform #s {
  text-align: center;
  font-size: var(--global--font-size-xl);
  line-height: var(--global--line-height-heading);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
  overflow-wrap: break-word;
  background-color: #ff3333;
  border: none;
  color: #fff;
  height: 2em;
  width: 100%;
  line-height: 1em;
  margin: 0;
  outline: none;
  padding: 0em 0.1em;
  text-align: left;
}
.header #searchform #s::placeholder {
  color: #fff;
}
.header.search-toggle #searchform {
  display: block;
}
.header #language-switcher {
  font-size: var(--global--font-size-page-title);
  line-height: var(--global--line-height-page-title);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
  border: none;
}
.header #language-switcher a {
  color: #000;
}
.header #language-switcher a:hover,
.header #language-switcher a:focus {
  color: #ff3333;
}
/*********************
07. NAVIGATION STYLES
*********************/
.menu-button {
  margin-left: -16px;
  vertical-align: middle;
  transform: translateY(0.1em);
}
.menu-close-button {
  display: block;
  transform: none;
}
.menu-close-button:hover,
.menu-close-button:focus,
.menu-close-button:active {
  color: #fff;
}
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
.nav {
  list-style-type: none;
  /* end .menu li */
}
.nav li {
  /*
		so you really have to rethink your dropdowns for mobile.
		you don't want to have it expand too much because the
		screen is so small. How you manage your menu should
		depend on the project. Here's some great info on it:
		http://www.alistapart.com/articles/organizing-mobile/
		*/
  /* highlight current page */
  /* end current highlighters */
}
.nav li a {
  display: block;
  text-decoration: none;
  /*padding: 10px 10px;*/
  /*
			remember this is for mobile ONLY, so there's no need
			to even declare hover styles here, you can do it in
			the style.scss file where it's relevant. We want to
			keep this file as small as possible!
			*/
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}
.nav li.current-menu-item a,
.nav li.current_page_item a,
.nav li.current_page_ancestor a {
  color: #000;
}
/* end .nav */
/* links to next and previous posts */
#posts-nav {
  border: none;
}
#posts-nav span {
  display: none;
}
#posts-nav a {
  display: block;
  width: 75px;
  height: 100px;
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -50px;
}
#posts-nav a[rel="prev"] {
  background: url(../images/arrow-right-blue.gif) no-repeat right center;
  right: 0;
}
#posts-nav a[rel="prev"]:hover,
#posts-nav a[rel="prev"]:focus {
  background-image: url(../images/arrow-right-dark.gif);
}
#posts-nav a[rel="next"] {
  background: url(../images/arrow-left-blue.gif) no-repeat left center;
  left: 0;
}
#posts-nav a[rel="next"]:hover,
#posts-nav a[rel="next"]:focus {
  background-image: url(../images/arrow-left-dark.gif);
}
/*********************
08. POSTS & CONTENT STYLES
*********************/
#content {
  margin-top: 1.75em;
}
.hentry.type-chronology .updated,
.hentry.type-post .updated,
.hentry.type-exhibition .updated,
.hentry.type-location .updated,
.hentry.type-page .updated {
  display: none;
}
/* end .hentry */
.article-header {
  margin-bottom: var(--global--gutter);
}
.archive-title {
  padding-bottom: 1em;
  border-bottom: 1px solid #ff3333;
}
/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
.sticky {
  /* sticky post style */
}
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
.article-figure {
  align-self: flex-start;
  margin-bottom: 0.5em;
}
.article-figure img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.article-figure .slider {
  /* clip 2nd slide */
}
.article-figure .slider.toggled .slider-buttons {
  position: sticky;
  bottom: 0;
  /* clip 2nd slide */
}
.article-figure .slider.toggled .slider-buttons .slider-toggle-button {
  transform: scaleY(-1);
}
.article-figure .slider.toggled .slides .slide:nth-of-type(2) {
  /* clip 2nd slide */
  height: auto;
  opacity: 1;
}
.article-figure .slider.toggled .caption {
  opacity: 1;
}
.article-figure .slider .slider-buttons {
  margin-top: -2em;
  text-align: right;
  overflow: hidden;
  /* clip 2nd slide */
}
.article-figure .slider .slider-buttons .button {
  margin: 0;
}
.article-figure .slider .slider-buttons .slider-zoom-button {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='26.02' height='26.02' version='1.1' viewBox='0 0 6.8844 6.8845' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(-157.58 -116)'%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  width: var(--global--font-size-base);
  height: var(--global--font-size-base);
  border: none;
  border-radius: 0;
  padding: 10px;
  display: inline-block;
  margin-right: 1rem;
}
.article-figure .slider .slider-buttons .slider-zoom-button.button:hover,
.article-figure .slider .slider-buttons .slider-zoom-buttonbutton:hover {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='26.02' height='26.02' version='1.1' viewBox='0 0 6.8844 6.8845' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(-157.58 -116)'%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23000000' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.article-figure .slider .slider-buttons .slider-zoom-button.button:active,
.article-figure .slider .slider-buttons .slider-zoom-buttonbutton:active {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='26.02' height='26.02' version='1.1' viewBox='0 0 6.8844 6.8845' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(-157.58 -116)'%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0h-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 164.16 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 122.58)'%3E%3Cpath d='m0 0v5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0h5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3Cg transform='matrix(.35278 0 0 -.35278 157.88 116.3)'%3E%3Cpath d='m0 0v-5.962' fill='none' stroke='%23f03d41' stroke-linecap='square' stroke-width='1.7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.article-figure .slider .slider-buttons .slider-toggle-button {
  color: #ff3333;
  vertical-align: middle;
  margin: -12px -18px -12px 0;
  padding: 0;
}
.article-figure .slider .slider-buttons .slider-toggle-button:focus,
.article-figure .slider .slider-buttons .slider-toggle-button:active {
  color: #ff3333;
}
.article-figure .slider .slides {
  list-style-type: none;
}
.article-figure .slider .slides .slide {
  margin-bottom: 2em;
  display: none;
}
.article-figure .slider .slides .slide:first-of-type,
.article-figure .slider .slides .slide:nth-of-type(2) {
  display: block;
}
.article-figure .slider .slides .slide:nth-of-type(2) {
  /* clip 2nd slide */
  height: 10vh;
  overflow: hidden;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.article-figure .slider .caption {
  text-align: center;
  font-size: var(--global--font-size-sm);
  line-height: var(--global--line-height-body);
  margin-top: 0.25em;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/*.js .article-figure img {
			display: none;
			
			&:first-child {
				display:block;
			}
		}*/
.entry-title a[rel="bookmark"] {
  color: #000;
}
.entry-title a[rel="bookmark"]:hover,
.entry-title a[rel="bookmark"]:focus {
  color: #ff3333;
}
.tags {
  color: #ff3333;
}
.tags:empty:before {
  display: none;
}
/* entry content */
.entry-content,
.entry-summary {
  /*
			image alignment on a screen this size may be
			a bit difficult. It's set to start aligning
			and floating images at the next breakpoint,
			but it's up to you. Feel free to change it up.
			*/
}
.entry-content *:first-child,
.entry-summary *:first-child {
  margin-top: 0;
}
.entry-content p,
.entry-summary p {
  margin-bottom: var(--global--line-height-body);
}
.entry-content dd,
.entry-summary dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content img,
.entry-summary img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
.entry-content pre,
.entry-summary pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}
.entry-content embed,
.entry-summary embed,
.entry-content iframe,
.entry-summary iframe,
.entry-content video,
.entry-summary video,
.entry-content object,
.entry-summary object {
  max-width: 100%;
}
/* end .entry-content, .entry-summary */
.wp-caption {
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
.wp-caption img {
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}
/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/*fancybox*/
.fancybox-title {
  font-family: "Helvetica Neue", Helvetica, Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  font-size: var(--global--font-size-sm);
  line-height: var(--global--line-height-body);
}
.fancybox-title-float-wrap .child {
  background: transparent;
  text-shadow: none;
  color: #000;
  font-weight: normal;
  line-height: var(--global--line-height-body);
  /*white-space: normal;*/
}
/******************************************************************
09. PAGE NAVI STYLES
******************************************************************/
.page-navigation,
.wp-prev-next {
  margin: 1.1em 0 2.2em;
}
.bones_page_navi {
  list-style-type: none;
  /* current page link */
  /* end .bones_page_navi .bpn-current */
  /* common styles for page-navi links */
  /* remove the bg on end links */
  /* previous link */
  /* next page link */
  /* first page link */
  /* last page link */
}
.bones_page_navi li {
  float: left;
  margin-left: 10px;
}
.bones_page_navi li a {
  padding: 3px 6px;
  display: block;
  text-decoration: none;
  position: relative;
}
.bones_page_navi li a:hover,
.bones_page_navi li a:focus {
  color: #f01d4f;
  text-decoration: underline;
}
.bones_page_navi li.bpn-current {
  padding: 3px 6px;
  border-bottom: 2px solid #f01d4f;
  position: relative;
}
.bones_page_navi li.bpn-current a {
  /* hovering on current page link */
}
.bones_page_navi li.bpn-prev-link,
.bones_page_navi li.bpn-next-link {
  font-weight: 700;
}
.bones_page_navi li.bpn-prev-link a,
.bones_page_navi li.bpn-next-link a {
  padding: 0;
}
.bones_page_navi li.bpn-prev-link a:hover,
.bones_page_navi li.bpn-next-link a:hover,
.bones_page_navi li.bpn-first-page-link a:hover,
.bones_page_navi li.bpn-last-page-link a:hover {
  background: none;
}
/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}
/* end .wp-prev-next */
/******************************************************************
10. COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments {
  /* number of comments span */
}
.commentlist {
  /* general comment classes */
  /* vcard */
  /* end .commentlist .vcard */
  /* comment meta */
  /* comment content */
  /* end .commentlist .comment_content */
  /* comment reply link */
  /* end .commentlist .comment-reply-link */
}
.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px;
  /* end .commentlist li ul.children */
}
.commentlist li:last-child {
  margin-bottom: 0;
}
.commentlist li ul.children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
.commentlist li[class*="depth-"] {
  margin-top: 1.1em;
}
.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.commentlist li:not(.depth-1) {
  margin-right: -10px;
  margin-left: -10px;
  margin-top: 0;
  padding-bottom: 0;
}
.commentlist .odd {
  background: #eee;
}
.commentlist .even {
  background: #fefefe;
}
.commentlist .vcard {
  margin-left: 50px;
}
.commentlist .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.commentlist .vcard time {
  float: right;
}
.commentlist .vcard time a {
  color: #999;
  text-decoration: none;
}
.commentlist .vcard time a:hover {
  text-decoration: underline;
}
.commentlist .vcard img.avatar {
  position: absolute;
  left: 10px;
  padding: 2px;
  border: 1px solid #cecece;
  background: #fff;
}
.commentlist .comment_content {
  margin-left: 50px;
}
.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}
.commentlist .comment-reply-link {
  text-decoration: none;
  float: right;
  background: #4598bb;
  padding: 3px 5px;
  color: #fff;
  opacity: 0.65;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.9em;
}
.commentlist .comment-reply-link:hover,
.commentlist .comment-reply-link:focus {
  opacity: 1;
}
/* end .commentlist */
/******************************************************************
11. COMMENT FORM STYLES
******************************************************************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em;
}
.respond-form form {
  margin: 0.75em 0;
}
.respond-form form li {
  list-style-type: none;
  clear: both;
  margin-bottom: 0.7335em;
}
.respond-form form li label,
.respond-form form li small {
  display: none;
}
.respond-form form input[type="text"],
.respond-form form input[type="email"],
.respond-form form input[type="url"],
.respond-form form textarea {
  padding: 3px 6px;
  background: #efefef;
  border: 2px solid #cecece;
  line-height: 1.5em;
  /* form validation */
}
.respond-form form input[type="text"]:focus,
.respond-form form input[type="email"]:focus,
.respond-form form input[type="url"]:focus,
.respond-form form textarea:focus {
  background: #fff;
}
.respond-form form input[type="text"]:invalid,
.respond-form form input[type="email"]:invalid,
.respond-form form input[type="url"]:invalid,
.respond-form form textarea:invalid {
  outline: none;
  border-color: #fbc2c4;
  background-color: #f6e7eb;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.respond-form form input[type="text"],
.respond-form form input[type="email"],
.respond-form form input[type="url"] {
  max-width: 400px;
  min-width: 250px;
}
.respond-form form textarea {
  resize: none;
  width: 97.3%;
  height: 150px;
}
/* comment submit button */
/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em;
}
/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}
/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}
/*********************
12. SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */
}
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}
#fb-link {
  vertical-align: middle;
  display: inline-block;
  color: #1877f2;
}
#fb-link img {
  vertical-align: top;
  margin-top: 1px;
}
/*********************
13. FOOTER STYLES
*********************/
.footer {
  clear: both;
}
.footer nav {
  margin-bottom: 1rem;
}
/*
	if you checked out the link above:
	http://www.alistapart.com/articles/organizing-mobile/
	you'll want to style the footer nav
	a bit more in-depth. Remember to keep
	it simple because you'll have to
	override these styles for the desktop
	view.
	*/
/* end .footer-links */
/*********************
ICONS
*********************/
.menu-button,
.search-button,
#sidebar-footer .material-icons {
  font-size: var(--global--font-size-page-title);
  line-height: var(--global--line-height-page-title);
  font-weight: var(--heading--font-weight-page-title);
  letter-spacing: var(--global--letter-spacing-lg);
  font-size: 36px;
}
/*********************
REAL HOVER
*********************/
@media (hover: hover) {
  .slider .slider-buttons .slider-toggle-button:hover {
    color: #000;
  }
}
/*
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*/
@media only screen and (min-width: 481px) {
  /******************************************************************
Site Name: message salon
Author: Brogramming.com

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to 
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection. 

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.less styles.

******************************************************************/
  /*********************
NAVIGATION STYLES
*********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */
  }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .menu ul li {
    /*
				plan your menus and drop-downs wisely.
				*/
  }
  .menu ul li a {
    /*
					you can use hover styles here even though this size
					has the possibility of being a mobile device.
					*/
  }
  /* end .menu */
  /*********************
POSTS & CONTENT STYLES
*********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft,
  .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright,
  .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter,
  .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
  /* end .entry-content */
  /*********************
FOOTER STYLES
*********************/
  /*
check your menus here. do they look good?
do they need tweaking?
*/
  /* end .footer-links */
}
/*
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 667px) {
  /******************************************************************
Site Name: message salon
Author: Brogramming.com

Flex grid replacing the float grid

******************************************************************/
  .onecol {
    max-width: calc( 100% / 12 * 1 - var(--global--gutter) * 2);
  }
  .twocol {
    max-width: calc( 100% / 12 * 2 - var(--global--gutter) * 2);
  }
  .threecol {
    max-width: calc( 100% / 12 * 3 - var(--global--gutter) * 2);
  }
  .fourcol {
    max-width: calc( 100% / 12 * 4 - var(--global--gutter) * 2);
  }
  .fivecol {
    max-width: calc( 100% / 12 * 5 - var(--global--gutter) * 2);
  }
  .sixcol {
    max-width: calc( 100% / 12 * 6 - var(--global--gutter) * 2);
  }
  .sevencol {
    max-width: calc( 100% / 12 * 7 - var(--global--gutter) * 2);
  }
  .eightcol {
    max-width: calc( 100% / 12 * 8 - var(--global--gutter) * 2);
  }
  .ninecol {
    max-width: calc( 100% / 12 * 9 - var(--global--gutter) * 2);
  }
  .tencol {
    max-width: calc( 100% / 12 * 10 - var(--global--gutter) * 2);
  }
  .elevencol {
    max-width: calc( 100% / 12 * 11 - var(--global--gutter) * 2);
  }
  .twelvecol {
    width: 100%;
    padding: 0;
  }
  .flex-grid {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 0 calc(var(--global--gutter) * -1);
  }
  .flex-grid > .onecol,
  .flex-grid > .twocol,
  .flex-grid > .threecol,
  .flex-grid > .fourcol,
  .flex-grid > .fivecol,
  .flex-grid > .sixcol,
  .flex-grid > .sevencol,
  .flex-grid > .eightcol,
  .flex-grid > .ninecol,
  .flex-grid > .tencol,
  .flex-grid > .elevencol,
  .flex-grid > .twelvecol {
    flex-grow: 1;
    padding: 0;
    margin: var(--global--gutter) !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .flex-grid.cols-wo-vm > .onecol,
  .flex-grid .flex-grid > .onecol,
  .flex-grid.cols-wo-vm > .twocol,
  .flex-grid .flex-grid > .twocol,
  .flex-grid.cols-wo-vm > .threecol,
  .flex-grid .flex-grid > .threecol,
  .flex-grid.cols-wo-vm > .fourcol,
  .flex-grid .flex-grid > .fourcol,
  .flex-grid.cols-wo-vm > .fivecol,
  .flex-grid .flex-grid > .fivecol,
  .flex-grid.cols-wo-vm > .sixcol,
  .flex-grid .flex-grid > .sixcol,
  .flex-grid.cols-wo-vm > .sevencol,
  .flex-grid .flex-grid > .sevencol,
  .flex-grid.cols-wo-vm > .eightcol,
  .flex-grid .flex-grid > .eightcol,
  .flex-grid.cols-wo-vm > .ninecol,
  .flex-grid .flex-grid > .ninecol,
  .flex-grid.cols-wo-vm > .tencol,
  .flex-grid .flex-grid > .tencol,
  .flex-grid.cols-wo-vm > .elevencol,
  .flex-grid .flex-grid > .elevencol,
  .flex-grid.cols-wo-vm > .twelvecol,
  .flex-grid .flex-grid > .twelvecol {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .flex-grid.cols-wo-hm > .onecol,
  .flex-grid.cols-wo-hm > .twocol,
  .flex-grid.cols-wo-hm > .threecol,
  .flex-grid.cols-wo-hm > .fourcol,
  .flex-grid.cols-wo-hm > .fivecol,
  .flex-grid.cols-wo-hm > .sixcol,
  .flex-grid.cols-wo-hm > .sevencol,
  .flex-grid.cols-wo-hm > .eightcol,
  .flex-grid.cols-wo-hm > .ninecol,
  .flex-grid.cols-wo-hm > .tencol,
  .flex-grid.cols-wo-hm > .elevencol,
  .flex-grid.cols-wo-hm > .twelvecol {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .flex-grid.no-wrap {
    flex-wrap: nowrap;
  }
  .flex-grid.justify-content-start {
    justify-content: flex-start;
  }
  /******************************************************************
Site Name: message salon
Author: Brogramming.com

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  /********************
02. WORDPRESS BODY CLASSES
    style a page via class
********************/
  .home {
    /* home page */
  }
  .home .hentry.sticky {
    padding-top: 0;
  }
  .home,
  .search,
  .archive {
    /* archive page */
    /* vertical-align: bottom */
  }
  .home .article-figure,
  .search .article-figure,
  .archive .article-figure {
    margin-bottom: 0;
  }
  .home .article-figure img,
  .search .article-figure img,
  .archive .article-figure img {
    margin: 0;
  }
  .home .inner-wrap,
  .search .inner-wrap,
  .archive .inner-wrap {
    /* display: table;
		
		.first, .last {
			display: table-cell;
			float: none;
			margin: 0;
			width: 50%;
			vertical-align: bottom;
		} */
  }
  .home .inner-wrap .entry-summary p,
  .search .inner-wrap .entry-summary p,
  .archive .inner-wrap .entry-summary p {
    margin-bottom: 0;
  }
  .search,
  .archive {
    /* search, archive page */
  }
  .search .hentry .article-header .flex-grid hgroup.fourcol,
  .archive .hentry .article-header .flex-grid hgroup.fourcol {
    display: block;
  }
  .search .hentry .article-header .flex-grid hgroup.fourcol h1,
  .archive .hentry .article-header .flex-grid hgroup.fourcol h1,
  .search .hentry .article-header .flex-grid hgroup.fourcol h2,
  .archive .hentry .article-header .flex-grid hgroup.fourcol h2 {
    order: unset;
  }
  .search .hentry .article-header .flex-grid .tags.artists,
  .archive .hentry .article-header .flex-grid .tags.artists,
  .search .hentry .article-header .flex-grid .entry-dates,
  .archive .hentry .article-header .flex-grid .entry-dates {
    order: unset;
  }
  .single,
  .page {
    /* single post page */
  }
  .single #main .hentry .article-header,
  .page #main .hentry .article-header {
    padding-bottom: 0;
    border-bottom: none;
  }
  .page-template-page_custom-artists {
    /* artist template page */
  }
  .page-template-page_custom-artists .entry-content #taxonomy-artist-terms-index {
    padding-left: calc( 100% / 12 * 3 - var(--global--gutter) * 2);
  }
  .page-template-page_custom-artists .entry-content #taxonomy-artist-terms > li {
    /* letter parent */
  }
  .page-template-page_custom-artists .entry-content #taxonomy-artist-terms > li a {
    /* anchor */
    scroll-margin-top: 0.75em;
  }
  .page-template-page_custom-artists .entry-content #taxonomy-artist-terms ul {
    /* sub-list with artists */
    margin: 0 0 -1rem calc( 100% / 12 * 3 - var(--global--gutter) * 2);
  }
  .page-template-page_custom-artists .entry-content #taxonomy-artist-terms ul li {
    transform: translateY(calc(var(--global--line-height-page-title) * -1));
  }
  /*********************
LAYOUT & GRID STYLES
*********************/
  .wrap {
    max-width: 1140px;
  }
  .inner-wrap {
    margin: auto;
  }
  /*********************
HEADER SYTLES
*********************/
  .header {
    min-height: 9em;
  }
  .header #inner-header {
    display: block;
    padding-bottom: 0.75em;
  }
  .header #top-header > div,
  .header #bottom-header {
    display: block;
  }
  .header #top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 0.75em;
  }
  .header #top-header .first {
    text-align: left;
  }
  .header #main-nav {
    padding: 0.75em 0;
  }
  .header .secondary-nav-button:before {
    -webkit-transition: transform 0.2s ease-in-out;
    -moz-transition: transform 0.2s ease-in-out;
    -ms-transition: transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    font-family: "Material Icons";
    font-feature-settings: "liga" 1;
    letter-spacing: normal;
    content: "arrow_right";
    display: inline-block;
    position: absolute;
    transform: translateX(-75%);
    margin-top: 5px;
    font-size: 72px;
  }
  .header .secondary-nav-button.open:before,
  .header .secondary-nav-button:hover:before {
    transform: translateX(-75%) skew(-1);
  }
  .header button.secondary-nav-button {
    display: none;
  }
  .header a.secondary-nav-button {
    display: inline-block;
  }
  .header #secondary-nav {
    margin-top: 0.25em;
  }
  .header #secondary-nav .nav-title {
    min-height: calc(var(--global--line-height-body) * 2);
  }
  .header #secondary-nav #secondary-nav-inner {
    margin: 0;
  }
  .header #secondary-nav #secondary-nav-inner > .threecol:first-of-type {
    margin-left: 0;
  }
  .header #secondary-nav #secondary-nav-inner > .threecol:last-of-type {
    margin-right: 0;
  }
  .header nav .secondary-nav {
    padding: 1em 0;
  }
  /*********************
NAVIGATION STYLES
*********************/
  .nav {
    /*background: #eee;*/
    /*border: 0;*/
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .nav li {
    /*float: left;
		position: relative;*/
    /*
		plan your menus and drop-downs wisely.
		*/
    /* showing sub-menus */
  }
  .nav li a {
    /*border-bottom: 0;*/
    /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/
  }
  .nav li a:hover,
  .nav li a:focus {
    /*background-color: #dedede;*/
  }
  .nav li ul.sub-menu,
  .nav li ul.children {
    /*width: 200px;
			border: 1px solid #ccc;
			border-top: 0;
			position: absolute;
			display: none;
			z-index: 8999;*/
    /* highlight sub-menu current page */
  }
  .nav li ul.sub-menu li,
  .nav li ul.children li {
    /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/
  }
  .nav li ul.sub-menu li a,
  .nav li ul.children li a {
    /*padding-left: 10px;
					border-right: 0;
					display: block;
					width: 180px;
					border-bottom: 1px solid #ccc;*/
  }
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    /*border-bottom: 0;*/
  }
  .nav li:hover ul {
    /*top: auto;
			display: block;*/
  }
  /* end .nav */
  /*********************
08. POSTS & CONTENT STYLES
*********************/
  #content {
    margin-top: 1em;
  }
  .flexslider .slides img {
    height: 400px;
    width: auto;
    display: block;
    max-width: none;
  }
  /* hover thumbs grid */
  .no-touchevents .thumbs-grid .hentry,
  .no-pointerevents .thumbs-grid .hentry {
    border: none;
  }
  .no-touchevents .thumbs-grid .hentry > a[rel="bookmark"],
  .no-pointerevents .thumbs-grid .hentry > a[rel="bookmark"] {
    height: 100%;
    position: relative;
  }
  .no-touchevents .thumbs-grid .hentry > a[rel="bookmark"]:hover,
  .no-pointerevents .thumbs-grid .hentry > a[rel="bookmark"]:hover,
  .no-touchevents .thumbs-grid .hentry > a[rel="bookmark"]:focus,
  .no-pointerevents .thumbs-grid .hentry > a[rel="bookmark"]:focus {
    background-color: #f8f8f8;
  }
  .no-touchevents .thumbs-grid .hentry > a[rel="bookmark"]:hover .front,
  .no-pointerevents .thumbs-grid .hentry > a[rel="bookmark"]:hover .front,
  .no-touchevents .thumbs-grid .hentry > a[rel="bookmark"]:focus .front,
  .no-pointerevents .thumbs-grid .hentry > a[rel="bookmark"]:focus .front {
    opacity: 0;
  }
  .no-touchevents .thumbs-grid .hentry > a[rel="bookmark"]:hover .back,
  .no-pointerevents .thumbs-grid .hentry > a[rel="bookmark"]:hover .back,
  .no-touchevents .thumbs-grid .hentry > a[rel="bookmark"]:focus .back,
  .no-pointerevents .thumbs-grid .hentry > a[rel="bookmark"]:focus .back {
    opacity: 1;
    display: block;
  }
  .no-touchevents .thumbs-grid .hentry .front,
  .no-pointerevents .thumbs-grid .hentry .front,
  .no-touchevents .thumbs-grid .hentry .back,
  .no-pointerevents .thumbs-grid .hentry .back {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-color: transparent !important;
  }
  .no-touchevents .thumbs-grid .hentry .front.no-thumbnail,
  .no-pointerevents .thumbs-grid .hentry .front.no-thumbnail {
    transition: none;
    background-color: #f8f8f8 !important;
  }
  .no-touchevents .thumbs-grid .hentry .back,
  .no-pointerevents .thumbs-grid .hentry .back {
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }
  /*********************
SIDEBARS & ASIDES
*********************/
  .widgettitle {
    /*border-bottom: 2px solid #444;
		margin-bottom: 0.75em;*/
  }
  .widget {
    /*padding: 0 10px;
		margin: 2.2em 0;*/
  }
  .widget ul li {
    /*margin-bottom: 0.75em;*/
    /* deep nesting */
  }
  .widget ul li ul {
    /*margin-top: 0.75em;
					padding-left: 1em;*/
  }
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
FOOTER STYLES
*********************/
  /*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
  .footer-links ul li {
    /*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/
  }
  /* end .footer-links */
  /*********************
ICONS
*********************/
  .menu-button,
  .search-button,
  #sidebar-footer .material-icons {
    font-size: 48px;
  }
}
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
/*@media only screen and (min-width: 1030px) {

	// styles in 1030up.less
	@import "_1030up.less";

} // end of media query*/
/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
/*@media only screen and (min-width: 1240px) {

	// styles in 1240up.less
	@import "_1240up.less";

} // end of media query*/
/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*/
/*@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min--moz-device-pixel-ratio: 1.5),
       only screen and (min-device-pixel-ratio: 1.5) {

	// styles in 2x.less
	@import "_2x.less";

} // end of media query*/
/*
iPHONE 5 MEDIA QUERY
Want to get fancy for no good reason? Knock yourself out.
*/
/*@media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  
  // iPhone 5 or iPod Touch 5th generation styles (you can include your own file if you want)
  
}*/
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/
@media print {
  /******************************************************************
Site Name: message salon
Author: Brogramming.com

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a,
  a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after,
  a:visited:after {
    /*content: " (" attr(href) ")";*/
  }
  a abbr[title]:after,
  a:visited abbr[title]:after {
    /*content: " (" attr(title) ")";*/
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
