/******************************************************************
Site Name:
Author:

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.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
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 gradients.

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

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
WORD WRAP
https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*********************/
/* @include word-wrap(); */
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*
* USAGE
* @include media("retina2x", ">desktop") {
    width: 100%;
* }
*/
body {
  --container-padding: 48px;
  --font-size-1: 0.5625rem;
  --font-size-2: 0.75rem;
  --font-size-3: 0.625rem;
  /*********************
  COLORS
  *********************/
  --color-primary: #000;
  --color-secondary: #4a4a4a;
  --color-tertiary: #fff;
  --color-quaternary: #D2D1CF;
  --color-quinary: #3d3d3d;
  --color-senary: #6a6a6a;
  --color-septenary: #D82E2E;
  --color-octonary: #42A33A;
  --color-nonary: #47A7A7;
  --color-denary: #3d3d3d;
  --text-color: var(--color-primary);
  --link-color: var(--color-secondary);
  --bkg-color-dark: var(--color-secondary);
  /*********************
  FONTS
  *********************/
  --main-font: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --heading-font: "Baskerville", "Georgia", Cambria, Times New Roman, Times, serif;
}

/*********************
LAYOUT
*********************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  -moz-tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
  tab-size: 4; /* 3 */
}

/*
Sections
========
*/
body {
  margin: 0; /* Remove the margin in all browsers. */
}

/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
  text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, 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;
}

/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
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 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  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.
*/
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-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.
*/
::-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 Chrome and Safari.
*/
summary {
  display: list-item;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
/*
.row {
	@extend .group;

	@include media(">=desktop") {
		//margin: 0 $row-gutter;
		display: flex;
		flex-flow: row wrap;

		.column,
		.columns {
			//padding: 0 $column-gutter;
		}

		.col-3 {
			flex: 0 0 25%;
			max-width: 25%; // Fix IE problem with flex and box-sizing border box
		}

		.col-4 {
			flex: 0 0 33.33333%;
			max-width: 33.33333%; // Fix IE problem with flex and box-sizing border box
		}

		.col-6 {
			flex: 0 0 50%;
			max-width: 50%; // Fix IE problem with flex and box-sizing border box
		}

		.col-8 {
			flex: 0 0 66.66666%;
			max-width: 66.66666%; // Fix IE problem with flex and box-sizing border box
		}

		.col-9 {
			flex: 0 0 75%;
			max-width: 75%; // Fix IE problem with flex and box-sizing border box
		}

		.col-12 {
			flex: 0 0 100%;
			max-width: 100%; // Fix IE problem with flex and box-sizing border box
		}
	}
}
*/
.row {
  display: flex;
  flex-flow: row nowrap;
  margin: 0 -5px;
}
.row > .col {
  padding: 0 5px;
}
.row > .col-20 {
  flex: 0 0 20%;
}
.row > .col-20a {
  flex: 0 1 20%;
  width: 20%;
}
.row > .col-33 {
  flex: 0 0 33.3333333333%;
}
.row > .col-40 {
  flex: 0 0 40%;
}
.row > .col-50 {
  flex: 0 0 50%;
}
.row > .col-60 {
  flex: 0 0 60%;
}
.row > .col-66 {
  flex: 0 0 66.6666666667%;
}
.row > .col-100 {
  flex: 0 0 100%;
}

.s-row {
  display: flex;
  flex-flow: row nowrap;
}
.s-row > .col {
  flex: 0 0 auto;
}

.v-row {
  display: flex;
  flex-flow: column nowrap;
}
.v-row > .col-fixed {
  flex: 0 0 auto;
}
.v-row > .col-exp {
  flex: 1 0 auto;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  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('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
p {
  @include word-wrap();

  // sets a minimum number of characters before and after the break
  //-webkit-hyphenate-before: 2;
  //-webkit-hyphenate-after: 3;
  //hyphenate-lines: 3;
}
*/
/* latin */
@font-face {
  font-family: "Baskervville";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Baskervville-italic-400-latin-5e9436807437a444638129cc229625c2.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Baskervville";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Baskervville-normal-400-latin-48b381bb9f35c41f4649fbe386db793a.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Montserrat-italic-variable-latin-00f358f6ce2cc1aa8be00137b50fa17d.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Montserrat-normal-variable-latin-6ebc674c440876e6bcb4d721e802397b.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.btn,
a.btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 0;
  margin: 10px;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  background-color: transparent;
}
.btn:hover, .btn:focus {
  text-decoration: none;
}
/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.btn.btn-link,
a.btn.btn-link {
  display: inline;
  text-transform: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  font-weight: var(--font-size-1);
  text-decoration: underline;
  background-color: transparent;
}
/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
  padding: 10px;
  margin-bottom: 1.11em;
  background-color: var(--color-secondary);
  color: var(--color-tertiary);
  border: 0 none;
  box-shadow: 0 none;
  width: 250px;
  max-width: 100%;
  font-weight: 300;
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:focus,
input[type=color]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  outline: none;
}
input[type=text][disabled],
input[type=password][disabled],
input[type=datetime][disabled],
input[type=datetime-local][disabled],
input[type=date][disabled],
input[type=month][disabled],
input[type=time][disabled],
input[type=week][disabled],
input[type=number][disabled],
input[type=email][disabled],
input[type=url][disabled],
input[type=search][disabled],
input[type=tel][disabled],
input[type=color][disabled],
select[disabled],
textarea[disabled],
.field[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}
textarea {
  width: 400px;
}
textarea.small {
  width: 100%;
  max-width: 250px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.admin-checkbox-container {
  margin-bottom: 0.5em;
}
.admin-checkbox-container input[type=checkbox] {
  display: inline-block;
  margin-right: 0.5em;
}

.form-field-container label {
  display: block;
  padding-left: 10px;
  margin-bottom: 0.5em;
}
.form-field-container label.checkbox-label {
  display: inline-block;
  padding-left: 0.5em;
}
.form-field-container input[type=checkbox] {
  margin-bottom: 10px;
}

/*********************
ELEMENTS
*********************/
/******************************************************************
Site Name:
Author:

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.

******************************************************************/
/******************************************************************
GENERAL STYLES
******************************************************************/
/* 
CLEARFIX
https://css-tricks.com/snippets/css/clear-fix/
*/
.group:after {
  content: "";
  display: table;
  clear: both;
}

body {
  font-size: var(--font-size-1);
  font-family: var(--main-font);
  line-height: 1.5;
  /*
  @include media("<phone-big") {
  	font-size: clamp(0.5625rem, calc(0.5625rem + ((1vw - 0.146875rem) * 4.6152)), 1.0096rem);
  	min-height: 0vw;
  }
  */
  /*
  @include media(">=phone-big", "<tablet-intermediate") {
  	font-size: clamp(0.5625rem, calc(0.5625rem + ((1vw - 0.28125rem) * 2.3076)), 1.0096rem);
  	min-height: 0vw;
  }

  @include media(">=tablet-intermediate", "<desktop") {
  	font-size: clamp(0.5625rem, calc(0.5625rem + ((1vw - 0.55rem) * 1.1538)), 0.75rem);
  	min-height: 0vw;
  }
  */
}
body.project-single {
  line-height: 1.15;
}

.container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

#main-and-sidebar-container {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  align-content: flex-start;
}
#main-and-sidebar-container .main {
  flex: 0 0 66.75%;
  width: 66.75%;
}
#main-and-sidebar-container .sidebar {
  flex: 0 0 33.25%;
  width: 33.25%;
  padding-top: 206px;
}

p {
  margin: 0 0 1em;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--link-color);
  text-decoration: underline;
}
a:hover, a:focus {
  color: var(--link-color);
  text-decoration: underline;
}

/******************************************************************
H1, H2, H3, H4, H5, H6 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--heading-font);
  text-rendering: optimizelegibility;
  font-weight: 400;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  text-decoration: none;
}

h1, .h1 {
  font-size: 3.1875rem;
  margin: 0;
}

h2, .h2 {
  font-size: 1.4375rem;
  margin: 0;
  font-weight: 300;
  line-height: 1;
  font-family: var(--main-font);
  text-transform: uppercase;
}
h2.mt, .h2.mt {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  margin-left: 10px;
}

h3, .h3 {
  margin: 0 0 12px;
  padding: 0;
  font-size: var(--font-size-2);
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--main-font);
}

.admin-project-form h3 {
  margin-left: 10px;
}

h4, .h4 {
  background-color: var(--color-secondary);
  margin: 0;
  padding: 5px 10px;
  font-size: var(--font-size-1);
  font-weight: 300;
  text-transform: uppercase;
  font-family: var(--main-font);
}
h4.big, .h4.big {
  padding: 10px 10px;
}

h5, .h5 {
  font-size: var(--font-size-1);
  font-family: var(--main-font);
  margin: 0 0 4px;
}

h6, .h6 {
  font-size: var(--font-size-1);
  font-family: var(--main-font);
  text-transform: uppercase;
  padding-left: 10px;
  margin: 0 0 1em;
}

/******************************************************************
HEADER STYLES
******************************************************************/
#header {
  height: 90px;
  padding: 20px 0 0;
}

body.project-single #header {
  height: auto;
  padding: 0;
}

#header-user-buttons-container {
  margin-right: 18%;
  text-align: right;
}

/******************************************************************
MOBILE & TABLET NAVIGATION STYLES
******************************************************************/
/******************************************************************
DESKTOP NAVIGATION STYLES
******************************************************************/
/******************************************************************
POSTS & CONTENT STYLES
******************************************************************/
.alert.alert-danger {
  color: #db0060;
  margin-bottom: 10px;
}

.login-error {
  padding-left: 10px;
}

#inner-inner-content {
  margin-left: 33.25%;
}

#title1-container {
  padding-top: 20px;
  margin-left: -72px;
  margin-bottom: 80px;
  line-height: 1.15;
}
#title1-container a {
  display: inline-block;
}
#title1-container .title1-text {
  display: block;
  padding-top: 18px;
  padding-bottom: 5px;
}
#title1-container .title1-subtitle {
  display: block;
  font-family: var(--main-font);
  font-size: 1.085rem;
  padding-left: 98px;
}

.logo-style-1 {
  display: block;
  margin-right: 12px;
  float: left;
}

.block-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.alert {
  display: block;
  max-width: 300px;
  margin-bottom: 1em;
}
.alert.alert-error {
  color: #f00;
}
.alert.alert-success {
  color: #0f0;
}

.table-style-1 {
  border: 1px solid var(--color-quaternary);
  margin: 2em 0;
  border-collapse: collapse;
  min-width: 250px;
}
.table-style-1 th,
.table-style-1 td {
  text-align: left;
  padding: 10px;
  border: 0 none;
  vertical-align: top;
}
.table-style-1 .td-extra {
  visibility: hidden;
}
.table-style-1 tbody tr:hover {
  background-color: #eee;
}
.table-style-1 tr {
  border-bottom: 1px solid var(--color-quaternary);
}
.table-style-1 tr:hover .td-extra {
  visibility: visible;
}

.sortable-table th {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.hide-row-client,
.hide-row-project {
  display: none;
}

#client-select {
  margin-top: 2em;
}

#search-projects {
  margin-top: 1em;
}

.btn-form {
  display: inline;
}

.projects-list {
  font-size: 0.75rem;
  line-height: 2.5;
}

/*
* project single
*/
body.project-single {
  background-color: var(--color-primary);
  color: var(--color-tertiary);
}
body.project-single #inner-content {
  padding-top: 30px;
  padding-bottom: 30px;
}

#project-single-container {
  margin: 0 -15px;
}
#project-single-container > .col {
  padding: 0 15px;
}

#main-col-1 {
  flex: 0 0 70.76923%;
}

#main-col-2 {
  flex: 0 0 29.230769%;
}
#main-col-2 > .inner-col {
  padding-bottom: 50px;
}

#project-title-container {
  background-color: var(--color-secondary);
  padding-top: 3px;
  padding-bottom: 3px;
}

#project-squirrel-logo-container {
  position: relative;
  width: 70px;
  height: 54px;
  padding-left: 7px;
}
#project-squirrel-logo-container::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 7px;
  left: 0;
  border-radius: 50%;
  background-color: var(--color-tertiary);
}

#project-squirrel-logo {
  position: relative;
  width: auto;
  height: 100%;
}

#project-title-subtitle-container h2 {
  margin-top: 9px;
  margin-bottom: 5px;
}

#project-extra-data {
  margin-top: 25px;
}

#data-col {
  flex: 0 0 40%;
}

#info-col {
  flex: 0 0 60%;
}

.ta-c {
  text-align: center;
}

.padding-1 {
  padding-left: 10px;
  padding-right: 10px;
}

.height-1 {
  height: 60px;
}

.height-2 {
  height: 50px;
}

.bkg-2 {
  background-color: var(--color-secondary);
}

.bkg-5 {
  background-color: var(--color-quinary);
}

.bkg-6 {
  background-color: var(--color-senary);
}

.bkg-7,
.bkg-red {
  background-color: var(--color-septenary);
}

.fill-red {
  fill: var(--color-septenary);
}

.bkg-8,
.bkg-green {
  background-color: var(--color-octonary);
}

.fill-green {
  fill: var(--color-octonary);
}

.bkg-9,
.bkg-blue {
  background-color: var(--color-nonary);
}

.fill-blue {
  fill: var(--color-nonary);
}

.show-red .smile-icon.unhappy .fill-container {
  fill: var(--color-septenary);
}

.show-blue .smile-icon.ok .fill-container {
  fill: var(--color-nonary);
}

.show-green .smile-icon.happy .fill-container {
  fill: var(--color-octonary);
}

.subtitle {
  display: block;
  text-transform: uppercase;
  font-size: var(--font-size-3);
  font-weight: 300;
}

.table-style-2 {
  border: 0 none;
  margin: 7px 0 0;
  padding: 0;
  border-collapse: collapse;
}
.table-style-2 td {
  text-align: left;
  padding: 5px 0;
  border: 0 none;
  vertical-align: middle;
}
.table-style-2 td:first-child {
  font-weight: 700;
  min-width: 70px;
  padding-right: 10px;
}

#info-col-title {
  margin-top: 12px;
  margin-bottom: 12px;
}

h3.pie-title {
  margin-top: 11px;
}

.svg-pie {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.nt-entry,
.dk-entry {
  padding: 7px 10px;
}

#naechste-termine-blocks-container {
  gap: 3px;
}

.h-100 {
  height: 100%;
}

.ziel-score {
  display: block;
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-tertiary);
  text-align: center;
  padding: 4px 10px;
}

#main-col-1-down {
  margin-top: 30px;
}

.process-col {
  position: relative;
  padding-bottom: 50px;
}

.process-steps-container {
  position: relative;
  padding-bottom: 80px;
}

.process-budget-container {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 100%;
  text-align: center;
  display: flex;
  gap: 10px;
}
.process-budget-container .budget,
.process-budget-container .aufwand {
  flex: 0 0 calc((100% - 10px) / 2);
  padding: 4px 0;
}
.process-budget-container .budget h5,
.process-budget-container .aufwand h5 {
  font-size: 0.375rem;
}
.process-budget-container .budget .budget-entry,
.process-budget-container .aufwand .budget-entry {
  font-size: 0.6875rem;
  font-weight: 300;
}

.process-title,
.subprocess-item {
  position: relative;
  padding: 20px 10px 20px 60px;
}

.subprocess-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.subprocess-list .subprocess-item {
  margin-bottom: 5px;
}
.subprocess-list .subprocess-item:last-child {
  margin-bottom: 0;
}

.icon-container {
  display: block;
  position: absolute;
  top: 10px;
  left: 15px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-tertiary);
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 0.75rem;
  color: var(--color-secondary);
  font-weight: 700;
}
.icon-container.full-bkg {
  background-color: var(--color-tertiary);
}
.icon-container.big {
  width: 40px;
  height: 40px;
  left: 10px;
}

.process-hapiness-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
}
.process-hapiness-container .smile-icon {
  display: inline-block;
  width: 30px;
  height: auto;
  margin-right: 7px;
}
.process-hapiness-container .smile-icon:last-child {
  margin-right: 0;
}

#protokol-col {
  max-height: 500px;
}

#protokol-content {
  height: calc(100% - 60px);
  overflow-y: scroll;
}

.section-title {
  position: relative;
  padding: 19px 10px 18px 68px;
}

#process-notes-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.process-notes-item .process-title {
  text-transform: uppercase;
  cursor: pointer;
}
.process-notes-item .process-title::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 60px);
  height: 1px;
  bottom: 10px;
  right: 0;
  background-color: var(--color-tertiary);
}
.process-notes-item .process-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  top: 20px;
  right: 14px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid var(--color-tertiary);
  transition: transform 0.24s linear;
}
.process-notes-item .process-notes-container {
  height: 0;
  visibility: hidden;
  transition: height 0.24s ease-out, visibility 0.24s linear;
  overflow: hidden;
}
.process-notes-item.collapsed .process-title::after {
  transform: rotateX(180deg);
}
.process-notes-item.collapsed .process-notes-container {
  visibility: visible;
}

.process-notes {
  padding: 7px 10px 7px 70px;
}
.process-notes a {
  color: var(--color-tertiary);
}
.process-notes ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.process-notes ul li {
  position: relative;
  padding: 0 0 10px 6px;
}
.process-notes ul li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

.o-50 {
  opacity: 50%;
}

.hidden {
  display: none;
}

#change-password-checkbox {
  margin-top: 1em;
}

.p-r {
  position: relative;
}

.back-link {
  display: block;
  position: absolute;
  bottom: 0;
  right: 20px;
  height: 30px;
  line-height: 30px;
  padding-right: 45px;
  color: var(--color-tertiary);
  text-transform: uppercase;
  font-size: var(--font-size-2);
  font-weight: 700;
  text-decoration: none;
}
.back-link:hover, .back-link:focus {
  color: var(--color-tertiary);
}
.back-link .icon-container {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  left: auto;
  line-height: 30px;
}
.back-link.edit-link {
  right: auto;
  left: 20px;
}
.back-link.edit-link .icon-container {
  transform: rotate(180deg);
}

/******************************************************************
SIDEBARS & ASIDES
******************************************************************/
.sidebar {
  padding-right: 90px;
}

#nav-menu {
  max-width: 200px;
  background-color: var(--color-quaternary);
  list-style-type: none;
  padding: 2em 0;
}
#nav-menu .nav-item {
  padding: 0.5em 2em;
}
#nav-menu .nav-item .nav-link {
  text-decoration: none;
}
#nav-menu .nav-item.active .nav-link {
  text-decoration: underline;
}

/******************************************************************
FOOTER STYLES
******************************************************************/
/*********************
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:
  Author:

  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.

  ******************************************************************/
  @page {
    size: A4 portrait;
  }
  * {
    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;
  }
}

/*# sourceMappingURL=main.css-8d3cac1fdf0ea8cc2602975832caa6a1.map */
