/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
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.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================	
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

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

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

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

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

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

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

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

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

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



/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

ol,
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

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

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

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

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

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

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

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

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

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

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

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {

  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

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

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

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

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf, .comment-respond {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after, .comment-respond:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

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

******************************************************************/
/*********************
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/
*/
/******************************************************************
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.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
/*  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
  word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
 -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";*/
}

/******************************************************************
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? */
/******************************************************************
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.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; } }
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; } }
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }

  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }

  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }

  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }

  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }

  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }

  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }

  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }

  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }

  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }

  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }

  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }

  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; } }
/*********************
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: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

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

*********************/
.blue-btn, .comment-reply-link, #submit {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: white;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
    color: white;
    text-decoration: none; }
  .blue-btn:active, .comment-reply-link:active, #submit:active {
    top: 1px; }

/*
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.
*/
.blue-btn, .comment-reply-link, #submit {
  background-color: #2980b9; }
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
    background-color: #2574a8; }
  .blue-btn:active, .comment-reply-link:active, #submit:active {
    background-color: #2472a4; }

/******************************************************************
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;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #000;
  border-radius: 0px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
	border-bottom: 1px solid #fff;
  width: 100%;
  max-width: 800px;
  font-family: "gt_eesti", Arial, sans-serif;
  background-color: rgba(0,0,0,0.05);
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  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 {
    background-color: #fff;
}
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #fbe3e4;
    border-color: #fbe3e4;
    background-color: white;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #fbe3e4; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #e6efc2;
    border-color: #e6efc2;
    background-color: white;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #e6efc2; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #cfcfcf;
    opacity: 0.6; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #d5edf8; }

input[type="password"] {
  letter-spacing: 0.3em; }

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em; }

select {
 /* -webkit-appearance: none;*/
  /* 1 */
  background-repeat: no-repeat;
  background-position: 97.5% center; }

#searchsubmit {
	border: none;
	background-color: #000;
	color: #fff;
	font-size: 24px;
	display: inline-block;
	width: 40px;
	height: 40px;
	transition: all 0.5s;
	vertical-align: top;
}

#searchsubmit:hover {
	background-color: #F73A3A;
}

#s {
	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:
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
*********************/
body {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #5c6b80;
  background-color: #eaedf2;
  -webkit-font-smoothing: antialiased; }

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* 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 post page */
/* 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 page */
/* 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 */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* 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) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 96%;
  margin: 0 auto; }

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #f01d4f;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, a:focus, a:visited:hover, 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); }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  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 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em; }

h2, .h2 {
  font-size: 1.6em;
  line-height: normal;
color: #F73A3A;
	font-weight: 700;
  }

h3, .h3 {
  font-size: 1.125em; }



h4, .h4 {
  font-size: 1.1em;
  font-weight: 700; 
}

h5, .h5  {
  font-size: 1.1em;
  font-weight: 400; 
}


/*********************
HEADER STYLES
*********************/
.header {
  background-color: #323944; }

#logo {
  margin: 0.75em 0; }
  #logo a {
    color: white; }

/*********************
NAVIGATION STYLES
*********************/
/*
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 {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */ }
  .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/
    */ }
    .nav li a {
      display: block;
      color: white;
      text-decoration: none;
      padding: 0.75em;
      /*
      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; }

/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  margin-top: 1.5em; }

.hentry {
  background-color: white;
  border-radius: 3px;
  margin-bottom: 1.5em;
  border: 1px solid #cccccc; }
  .hentry header {
    border-bottom: 1px solid #f8f9fa;
    padding: 1.5em; }
  .hentry footer {
    padding: 1.5em;
    border-top: 1px solid #f8f9fa; }
    .hentry footer p {
      margin: 0; }

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0; }

/* 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 post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0; }

/* entry content */
.entry-content {
  padding: 1.5em 1.5em 0;
  /*
  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 p {
    margin: 0 0 1.5em; }
  .entry-content table {
    width: 100%;
    border: 1px solid #eaedf2;
    margin-bottom: 1.5em; }
    .entry-content table caption {
      margin: 0 0 7px;
      font-size: 0.75em;
      color: #9fa6b4;
      text-transform: uppercase;
      letter-spacing: 1px; }
  .entry-content tr {
    border-bottom: 1px solid #eaedf2; }
    .entry-content tr:nth-child(even) {
      background-color: #f8f9fa; }
  .entry-content td {
    padding: 7px;
    border-right: 1px solid #eaedf2; }
    .entry-content td:last-child {
      border-right: 0; }
  .entry-content th {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaedf2;
    border-right: 1px solid #eaedf2; }
    .entry-content th:last-child {
      border-right: 0; }
  .entry-content blockquote {
    margin: 0 0 1.5em 0.75em;
    padding: 0 0 0 0.75em;
    border-left: 3px solid #2980b9;
    font-style: italic;
    color: #9fa6b4; }
  .entry-content dd {
    margin-left: 0;
    font-size: 0.9em;
    color: #787878;
    margin-bottom: 1.5em; }
  .entry-content img {
    margin: 0 0 1.5em 0;
    max-width: 100%;
    height: auto; }
  .entry-content .size-auto,
  .entry-content .size-full,
  .entry-content .size-large,
  .entry-content .size-medium,
  .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto; }
  .entry-content pre {
    background: #323944;
    color: #f8f9fa;
    font-size: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px; }

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */ }
  .wp-caption img {
    max-width: 100%;
    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 */
.tags {
  margin: 0; }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/


/* 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 */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */ }

.commentlist {
  margin: 0;
  list-style-type: none; }

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */ }
  .comment .comment-author {
    padding: 7px;
    border: 0; }
  .comment .vcard {
    margin-left: 50px; }
    .comment .vcard cite.fn {
      font-weight: 700;
      font-style: normal; }
    .comment .vcard time {
      display: block;
      font-size: 0.9em;
      font-style: italic; }
      .comment .vcard time a {
        color: #9fa6b4;
        text-decoration: none; }
        .comment .vcard time a:hover {
          text-decoration: underline; }
    .comment .vcard .avatar {
      position: absolute;
      left: 16px;
      border-radius: 50%; }
  .comment:last-child {
    margin-bottom: 0; }
  .comment .children {
    margin: 0;
    /* variations */
    /* change number for different depth */ }
  .comment[class*=depth-] {
    margin-top: 1.1em; }
  .comment.depth-1 {
    margin-left: 0;
    margin-top: 0; }
  .comment:not(.depth-1) {
    margin-top: 0;
    margin-left: 7px;
    padding: 7px; }
  .comment.odd {
    background-color: white; }
  .comment.even {
    background: #f8f9fa; }

/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right; }

/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em; }

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa; }

#reply-title {
  margin: 0; }

.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0; }
  .logged-in-as a {
    color: #5c6b80; }

.comment-form-comment {
  margin: 1.5em 0 0.75em; }

.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em; }

/* comment submit button */
#submit {
  float: right;
  font-size: 1em; }

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

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */ }

.no-widgets {
  background-color: white;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #cccccc;
  border-radius: 2px;
  margin-bottom: 1.5em; }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #323944;
  color: #f8f9fa; }

/*
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 */
/*********************
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:
  Author:
  
  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.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  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: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  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
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    width: 760px; }

  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .nav ul {
      background: #323944;
      margin-top: 0; }
    .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 {
          color: white;
          text-decoration: underline; }
      .nav li ul.sub-menu,
      .nav li ul.children {
        margin-top: 0;
        border: 1px solid #ccc;
        border-top: 0;
        position: absolute;
        visibility: hidden;
        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 ul.sub-menu li ul,
          .nav li ul.children li ul {
            top: 0;
            left: 100%; }
      .nav li:hover > ul {
        top: auto;
        visibility: visible; }

  /* end .nav */
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 2.2em; }

  .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 */ }
/*********************
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) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  .wrap {
    width: 1040px; } }
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/ }
/*********************
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) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */ }
/*********************
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.
  
  ******************************************************************/
  * {
    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; } }



/* SCT */

body, body[itemscope] {
	font-family: 'gt_eesti',sans-serif;
	font-weight: normal;
	overflow-y: scroll;
	color: #000;
	background-color: transparent;
}

p {
	margin-top: 0px;
}

.nobrd {
	border: none !important;
}

.jmplink {
	line-height: normal;
	margin-bottom: 10px;
	display: inline-block;
}

.page-template main > p, .page-template-default main > p {
	padding-right: 190px;
}

.page-template-default h1, .page-template-default main > h3 {
	padding-right: 190px;
}

.page-template-default .main_image {
	padding-right: 190px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.def_ul_list {
	list-style: none;
	padding: 0;
	margin: 0;
	padding-left: 0.5em;
}

.def_ul_list li {
	margin: 5px 0px;
	padding: 0px;
}

a, a:focus, textarea:focus, input:focus{
    outline: none;
}

.wpuf-success {
	background-color: transparent;
	border: none;
	color: #000000;
	font-weight: bold;
}

.wpforms-confirmation-container-full {
	background-color: transparent;
	border: none;
	padding: 0px;
	font-weight: bold;
}

.lang_only {
	display: none;
}

.de .lang_only.de {
	display: inherit;
}

.fr .lang_only.fr {
	display: inherit;
}

.datum_von_hiddenwpuf_hidden_field {
	display: none;
}

/* Fonts */


@font-face {
    font-family: 'gt_eesti';
    src: url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Regular.eot');
    src: url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Regular.eot?#iefix') format('embedded-opentype'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Regular.woff2') format('woff2'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Regular.woff') format('woff'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gt_eesti';
    src: url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Regular-Italic.eot');
    src: url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Regular-Italic.eot?#iefix') format('embedded-opentype'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Regular-Italic.woff2') format('woff2'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Regular-Italic.woff') format('woff'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Regular-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'gt_eesti';
    src: url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Bold.eot');
    src: url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Bold.eot?#iefix') format('embedded-opentype'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Bold.woff2') format('woff2'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Bold.woff') format('woff'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'gt_eesti';
    src: url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Bold-Italic.eot');
    src: url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Bold-Italic.eot?#iefix') format('embedded-opentype'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Bold-Italic.woff2') format('woff2'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Bold-Italic.woff') format('woff'),
        url('/wp-content/themes/sct/fonts/GT-Eesti-Display-Bold-Italic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}




/* Lightbox */

#slb_viewer_wrap .slb_theme_slb_default .slb_details {
	overflow: visible !important;
	padding-top: 4px !important;
	margin-bottom: -15px !important;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_data_title, #slb_viewer_wrap .slb_theme_slb_default .slb_group_status {
	font-family: 'gt_eesti',sans-serif !important;
	font-size: 16px !important; 
	
}
#slb_viewer_wrap .slb_theme_slb_default .slb_group_status {
	font-style: normal !important;
	float: right;
}

.entry-content .gallery img {
	margin: 0px;
	width: 100%;
	height: auto;
}

.gallery br {
	display: none;
}

.gallery-item {
	float: left;
	margin: 0;
	width: 22%;
	margin-right: 3%;
	margin-bottom: 1.5%;
	opacity: 1;
	transition: opacity 0.5s;
}

.gallery-item:hover {
/*	opacity: 0.6;*/
}

.gallery-item .gallery-caption {
	display: none;
}

.gallery-item a, .gallery-item a:hover {
	border-bottom: none;
}

/* Titles */


h1 {
	font-size: 45px;
	font-weight: bold;
	font-style: italic;
	
}

main h1:nth-of-type(1), main h5:nth-of-type(1) {
	padding-right: 150px;
}

header h1:nth-of-type(1), header h5:nth-of-type(1) {
	padding-right: 0;
}

h3 {
	font-size: 27px;
	line-height: 34px;
	font-weight: 700;
}

h4, h5 {
	padding: 0px;
	font-size: 24px;
	font-weight: bold;
}

h5 {
	font-weight: 400;
}

h6 {
	font-size: 21px;
	color: #F73A3A;
	margin: 1em 0;
}

main ul {
	padding-left: 2.5em;
}

main ul li {
	list-style: none;
	padding-bottom: 0.5em;
}

main ul li::before {
	content: '—';
	font-weight: bold;
	color: #F73A3A;
	position: absolute;
	transform: translateX(-125%);
}

main ul.page-numbers li::before {
	display: none;
}

.page-numbers li:nth-child(1)::before {
	position: relative;
	display: inline !important;
}

/* Header */

.header {
	text-align: center;
	background-color: #fff;
}

#inner-header {
	width: 100%;
	max-width: 936px;
	display: inline-block;
	text-align: left;
	position: relative;
}

#logo {
	margin: 0px;
	display: inline-block;
	padding-top: 25px;
	padding-bottom: 5px;
	margin-left: -5px;
}

#logo_sct {
	/*width: 180px;
	height: auto;*/
	height: 102px;
	width: auto;
	padding-left: 5px;
}

#header_border {
	/*background: linear-gradient(135deg, #F73A3A 0%, #FF5800 59.73%, #E55A19 100%);*/
	background-color: #F73A3A;
	height: 7px;
	width: 100%;
}


/* Menus */

.nav li a {
	color: #000;
	font-size: 22px;	
	font-weight: normal;
	padding: 0px;
	margin-right: 35px;
	margin-bottom: 15px;
}

.nav li.current_page_item a, .nav li.current-page-ancestor a, .nav li.current-menu-item a {
	color: #F73A3A;
}

.nav li a:hover, .nav li a:focus {
	text-decoration: none;
	color: #000;
}


#meta_menu_ct {
	position: absolute;
	display: inline-block;
	right: 0px;
}

#meta_menu_ct .fa-ico {
	color: #000;
	margin-left: 30px;
}

#meta_menu_ct .fa-ico i {
	font-size: 18px;
	top: -6px;
	display: inline-block;
	position: relative;
}

#meta_menu_ct .fa-ico i:hover {
	color: #E63B21;
}

.meta_menu {
	display: inline-block;
}

.meta_menu .menu li {
	display: inline-block;
	float: left;
	margin-left: 40px;
}

.meta_menu .menu li a {
	text-decoration: none;
	color: #000;
	font-size: 16px;
}

.meta_menu .menu li a:hover {
	color: #E63B21;
}



/* Footer */

footer {
	padding-bottom: 50px;
	text-align: center;
}

.footer {
	background-color: #fff;
	color: #000;
	font-size: 14px;
}

.footer a {
	color: #000;
	text-decoration: none;
}

.footer a:hover {
	color: #F73A3A;
	text-decoration: none;
}

#footer_border {
	/*background: linear-gradient(135deg, #F73A3A 0%, #FF5800 59.73%, #E55A19 100%);*/
	background-color: #F73A3A;
	height: 5px;
	width: 100%;
}


#footer_kontakt_ct, #footer_links_ct {
	border-top: 1px solid #000;
}

#footer_bc, #footer_kontakt, #footer_links {
	display: inline-block;
	text-align: left;
	width: 100%;
	max-width: 936px;
}

.col_third {
	width: 33.3%;
	float: left;
}


#footer_kontakt {
	padding-top: 25px;
	padding-bottom: 25px;
}

#footer_kontakt .footer_kontakt_subline {
	padding-top: 20px;
}

.footer .hl_subtitle {
	font-size: 16px;
	font-weight: bold;
	color: #F73A3A;
	display: inline-block;
	padding-bottom: 10px;
}

.footer .fa-ico {
	font-size: 21px;
	margin-top: 5px;
	display: inline-block;
	margin-right: 30px;
}

#footer_links {
	padding-top: 10px;
	padding-bottom: 20px;
}

.footer ul li {
	margin-bottom: 10px;
}

/* Breadcrumbs */

#footer_bc {
	color: #F73A3A;
	font-size: 16px;
	padding-top: 20px;
	padding-bottom: 15px;
}

#footer_bc a {
	color: #F73A3A;
}

#footer_bc a:hover {
	color: #000;
	text-decoration: none;
}

#footer_bc .fa-caret-right {
	font-size: 13px;
	margin: 0px 10px;
}

/* Content */


#content {
	margin: 0px;
	padding: 0px;
	text-align: center;
}

#inner-content {
	width: 100%;
	max-width: 936px;
	display: inline-block;
	text-align: left;
	padding-bottom: 20px;
}

.hentry {
	border: none;
	border-radius: 0px;
}

.hentry header {
	border-bottom: none;
	padding: 0px;
	padding-top: 50px;
	padding-left: 0px;
	padding-right: 190px;
	padding-bottom: 25px;
	font-size: 10px;
}

.single-post .hentry header, .single-news .hentry header {
	padding-left: 0px;
}

.hentry header h3 a {
	color: #000;
	/*font-weight: bold;*/
}

.hentry header h3 a:hover {
	color: #F73A3A;
}

.entry-content {
	padding: 0px;
}

.hentry footer {
	padding: 0px;
	border-bottom: none;
}

section {
	font-size: 20px;
}

section .main_image {
	padding-left: 0px;
	padding-right: 190px;
}

section .abstract_ct {
	font-size: 14px;
	width: 216px;
	margin-right: 36px;
	margin-bottom: 24px;
	margin-left: 0px;
	float: left;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	padding-top: 8px;
	padding-bottom: 8px;
	margin-top: 10px;
}

.wide_image_ct {
	padding-top: 67%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.abstract_ct .abstract_beitragstyp a {
	font-weight: bold;
	text-decoration: none;
	color: #F73A3A;
}

.abstract_ct .abstract_beitragstyp a:hover {
	color: #000 !important;
}

.abstract_head {
	padding-bottom: 8px;
}

.abstract_text {
	border-top: 1px solid #000;
	padding-top: 8px;
	padding-bottom: 8px;
}

.abstract_tags {
	border-top: 1px solid #000;
	padding-top: 8px;
	padding-bottom: 8px;
}

.abstract_tags a {
	text-decoration: none;
	color: #F73A3A !important;
}

.abstract_tags a:hover {
	color: #000 !important;
}

.abstract_scm {
	border-top: 1px solid #000;
	padding-top: 8px;
	display: flex;
  justify-content: space-between;
}

.abstract_scm a {
	font-size: 21px;
	color: #F73A3A !important;
}

.abstract_scm a:hover {
	color: #000 !important;
}

.abstract_ct a, .abstract_ct a:hover {
	border-bottom: none;
}



section .main_text {
	padding-left: 0px;
	padding-right: 190px;
	padding-top: 40px;
}

.entry-content p {
	margin: 0px;
	margin-bottom: 30px;
}

.entry-content blockquote {
	margin: 0px;
	padding: 0px;
	border-left: none;
	font-style: normal;
	display: block;
	margin-left: -80px;
	padding-top: 20px;
	margin-bottom: 40px;
	padding-right: 80px;
	color: #000;
	font-size: 15px;
	line-height: 30px;
}

.entry-content blockquote img {
	float: left;
	width: 136px;
	height: auto;
	margin-right: 24px;
	margin-bottom: 40px;
}

.entry-content blockquote strong {
	font-size: 28px;
	font-style: italic;
	font-weight: bold;
	
}

.entry-content blockquote p {
	margin-bottom: 10px;
}

.entry-content blockquote strong::before {
	content: "«";
}

.entry-content blockquote strong::after {
	content: "»";
}


.entry-content blockquote + p {
	clear: both;
}

.entry-content img {
	margin: 0px;
}

.post_bildlegende {
	position: relative;
	display: inline-block;
	font-size: 16px;
}

section a, section a:visited {
	color: #000;
}

section a:hover {
	color: #F73A3A !important;
}

.hentry footer {
	border-top: none;
}

.more_posts {
	float: left;
	margin-left: 24px;
	width: 296px;
	text-align: left;
	font-size: 16px;
}

.more_posts_ct div:nth-of-type(4n-3) {
	margin-left: 0;
}

.cmpi {
	width: 100%;
	display: inline-block;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.more_posts_ct .cmpi {
	height: 200px;
}


.article-footer {
	text-align: center;
	border-top: 2px solid #000;
	padding-top: 25px;
}

.inner-article-footer {
	display: inline-block;
	text-align: left;
	width: 100%;
	max-width: 936px;
}

.article-footer.readmore-footer {
	border-top: 1px solid #000;
	padding-top: 40px;
	padding-bottom: 40px;
}

.more_posts_meta {
	display: inline-block;
	font-size: 14px;
	margin-top: 15px;
}

.more_posts h3 {
	font-size: 25px;
	font-style: italic;
	font-weight: bold;
	text-decoration: none !important;
	color: #000 !important;
	margin-bottom: 5px;
}

.more_posts a {
	text-decoration: none;
}

.more_posts a:hover h3 {
	color: #F73A3A !important;
}

/* Home */

.home_link {
	font-size: 20px;
	line-height: 23px;
	text-decoration: none;
	border-bottom: 1px solid #000;
	color: #000 !important;
	padding-bottom: 5px;
}

.home_link:hover {
	color: #F73A3A !important;
	border-bottom: 1px solid #F73A3A;
}

main {
	padding-top: 50px;
}

.post-template-default.single main, .single-news main {
	padding-top: 0px;
}

.page-template-page-agenda2030_p1 h5, .page-template-page-agenda2030_p2 h5 {
	padding-right: 17%;
	font-size: 52px;
	line-height: 54px;
}

.home_intro, .intro {
	font-size: 24px;
	line-height: 34px;
	color: #000;
	display: inline-block;
	/*padding-right: 150px;*/
}

.home_intro p:nth-of-type(1), .intro p:nth-of-type(1) {
	padding-right: 120px;
}

main .home_intro a, main .intro a, main .home_intro a:visited, main .intro a:visited {
	/*color: #F73A3A;
	border-bottom: 1px solid #F73A3A;*/
}

.hlt_link {
	color: #F73A3A !important;
	border-bottom: 1px solid #F73A3A !important;
}

.newest_posts {
	float: left;
	margin-left: 24px;
	width: 456px;
	text-align: left;
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 60px;
	margin-top: 5px;
}

.newest_posts a {
	border-bottom: none;
}

.newest_posts.ind1, .newest_posts.ind3 {
	margin-left: 0px;
}

.newest_posts_meta {
	display: inline-block;
	font-size: 14px;
	margin-top: 15px;
}

.newest_posts h3 {
	font-size: 34px;
	line-height: 36px;
	font-style: italic;
	font-weight: bold;
	text-decoration: none !important;
	color: #000 !important;
	margin-bottom: 10px;
	display: inline-block;
	width: 100%;
}

.newest_posts a {
	text-decoration: none;
}

.newest_posts a:hover h3 {
	color: #F73A3A !important;
}

.newest_posts .cmpi {
	height: 305px;
	float: left;
}

.newest_posts.first_p_sticky {
	background-color: rgba(198,237,255,0.55);
	padding-bottom: 10px;
}

.newest_posts.first_p_sticky h3, .newest_posts.first_p_sticky .home_posts_text_inner {
	padding-left: 10px;
	padding-right: 10px;
	display: inline-block;
}


.home_block {
	font-size: 22px;
	line-height: 28px;
	margin-top: 100px;
}

.home_block h4 {
	margin-bottom: 20px;
}

.home_block .home_link {
	margin-top: 20px;
	display: inline-block;
}



.highlightbox_wrapper {
	background-color:  rgba(198,237,255,0.55);
	padding: 24px 24px 0 18px;
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 60px;
	display: none;
}

.highlight_posts .cmpi {
	display: inline-block;
	float: left;
	width: 200px;
	margin-right: 24px;
}

.highlight_posts {
	padding-bottom: 24px
}


.highlight_posts .hp_cwrapper {
	display: inline-block;
	width: 665px;
}

.highlight_posts h3 {
	font-size: 34px;
	line-height: 36px;
	font-style: italic;
	font-weight: bold;
	text-decoration: none !important;
	color: #000 !important;
	margin-bottom: 10px;
	margin-top: 5px;
}

.highlight_posts a {
	text-decoration: none;
}

.highlight_posts a:hover h3 {
	color: #F73A3A !important;
}

.highlight_posts_meta {
	display: inline-block;
	font-size: 14px;
	margin-top: 15px;
}


.intro_boxes_ct {
	padding-top: 60px;
	display: flex;
	flex-wrap: wrap;
}

.intro_boxes_title {
	padding-bottom: 20px;
	width: 100%;
}

.intro_box {
	padding: 20px 30px 10px 30px;
	background-color: rgba(198,237,255,0.55);
	float: left;
	width: 46%;
	margin-right: 20px;
	margin-bottom: 20px;
}

.intro_box h3 {
	font-size: 34px;
	line-height: 36px;
	font-style: italic;
	font-weight: bold;
	text-decoration: none !important;
	color: #000 !important;
	margin-bottom: 10px;
	margin-top: 5px;
	text-align: center;
}





.home_agenda_ct {
	margin-bottom: 0px;
	margin-top: 40px;
}

.home_agenda_ct.readmore_agenda {
	margin-top: 40px;
}

.home_agenda_ct .more_posts_ct {
	margin-top: 10px;
	margin-bottom: 30px;
}




 .agenda_content {
	font-size: 14px;
	width: 245px;
	padding-left: 10px;
	padding-right: 20px;
}

.agenda_content h3 {
	font-size: 20px;
	line-height: 22px;
}



.agenda_list .agenda_datum {
	display: inline-block;
	font-size: 28px;
	line-height: 25px;
	width: 60px;
	text-align: left;
	vertical-align: top;
}

.agenda_list .agenda_content {
	display: inline-block;
	width: 230px;
	text-align: left;
	border-left: 1px solid #000;
	padding-left: 15px;
	font-size: 14px;
}

.agenda_list .agenda_content h3 {
	font-size: 21px;
	line-height: 21px;
}



.themen_img {
	margin-top: 30px;
}



.themen_posts {
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 50px;
	margin-top: 30px;
}

.themen_posts .cmpi {
	display: inline-block;
	float: left;
	width: 376px;
	height: 260px;
	margin-right: 24px;
}

.themen_posts .cmpi.c_noimg {
	height: 120px;
}

.cmctt {
	display: inline-block;
	width: 536px;
	float: right;
}

.cmctt p, .single header p  {
	display: inline;
}


.themen_posts h3 {
	font-size: 34px;
	line-height: 36px;
	font-style: italic;
	font-weight: bold;
	text-decoration: none !important;
	color: #000 !important;
	margin-bottom: 10px;
	margin-top: 5px;
}

.themen_posts a {
	text-decoration: none;
}

.themen_posts a:hover h3 {
	color: #F73A3A !important;
}

.themen_posts_meta {
	display: inline-block;
	font-size: 15px;
	margin-top: 15px;
}

.themen_posts_meta a {
	color: #000;
}

.themen_posts_meta a:hover {
	color: #F73A3A;
}


.themen_posts.no_img {
	max-width: 800px;
}

.themen_posts.no_img .themen_posts_meta {
	margin-top: 5px;;
}

.themen_posts.ps2 p {
	margin: 0px;
}

.themen_posts.ps2 .pressespiegel_content {
	font-size: 20px;
}


.page-template-page-news-swisscleantech .home_link {
	margin-right: 40px;
}


.home_link.news_active {
	color: #F73A3A !important;
	border-bottom: 1px solid #F73A3A !important;
}

.box_mitglieder_auszug_titel {
	padding-bottom: 20px;
}


main {
	font-size: 20px;
}

.home main {
	padding-bottom: 20px;
}



main ol {
	list-style: decimal;
}

main a, main a:visited, .more_posts a, .more_posts a:visited {
	color: #000;
	border-bottom: 1px solid #000;
	text-decoration: none;
}

main a:hover, .more_posts a:hover {
	color: #F73A3A !important;
	border-bottom: 1px solid #F73A3A;
}

a.hnul:hover {
	border-bottom: none !important;
}


/* Agenda */

.wpuf-form {
	font-size: 18px;
}

ul.wpuf-form li {
	padding: 10px 0px;
	width: 100%;
}

ul.wpuf-form li .wpuf-label {
	width: 100%;
}

ul.wpuf-form li .wpuf-fields {
	width: 100%;
}

ul.wpuf-form li.post_content {
	width: 95%;
}

.wpuf-form input[type="text"], ul.wpuf-form li.field-size-large .wpuf-fields {
	max-width: 100%;
	width: 100%;
}

#agenda_kurzbeschreibung_151 {
	height: 80px;
	min-height: 80px;
}

#post_content_151 {
	height: 240px;
}

ul.wpuf-form .agenda_datum_von_vis, ul.wpuf-form .agenda_datum_bis_vis, ul.wpuf-form .agenda_ticketpreis, ul.wpuf-form .agenda_rabatt_sct {
	width: 50%;
	float: left;	
}

.agenda_datum_von_vis input[type=text], .agenda_datum_bis_vis input[type=text], .agenda_ticketpreis input[type=text], .agenda_rabatt_sct input[type=text] {
	width: 90% !important;
}


.wpuf-form-add.wpuf-style ul.wpuf-form .wpuf-submit input[type=submit], .def_form_button, div.wpforms-container-full .wpforms-form input[type=submit], div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form .wpforms-page-button, .sct_def_button {
	border-radius: 0px;
	border: none !important;
	text-shadow: 0 0 0 rgba(0,0,0,0);
	-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);
box-shadow: 0 0 0 0 rgba(0,0,0,0);
	font-size: 18px;
	color: #fff !important;
	background: linear-gradient(135deg, #F73A3A 0%, #FF5800 59.73%, #E55A19 100%) !important;
	padding: 10px;
	transition: all 0.5s;
}

.wpuf-form-add.wpuf-style ul.wpuf-form .wpuf-submit input[type=submit]:hover, .def_form_button:hover {
	background: linear-gradient(135deg, #FF5800 0%, #FF5800 59.73%, #FF5800 100%);
}


ul.wpuf-form li.has-error {
	background-color: transparent;
}

.wpuf-error-msg, .wpuf-wordlimit-message wpuf-help, ul.wpuf-form .wpuf-submit .wpuf-errors {
	display: none;
}

ul.wpuf-form li.has-error::after {
	content: "Bitte füllen Sie dieses Feld aus.";
	color: #f00;
	font-style: italic;
	font-size: 16px;
	display: inline-block;
	position: relative;
	top: -8px;
}

ul.wpuf-form .wpuf-el {
	position: static !important;
}


div.wpforms-container-full .wpforms-form .wpforms-field-label {
	font-size: 18px;
}

div.wpforms-container-full .wpforms-form input[type=date], div.wpforms-container-full .wpforms-form input[type=datetime], div.wpforms-container-full .wpforms-form input[type=datetime-local], div.wpforms-container-full .wpforms-form input[type=email], div.wpforms-container-full .wpforms-form input[type=month], div.wpforms-container-full .wpforms-form input[type=number], div.wpforms-container-full .wpforms-form input[type=password], div.wpforms-container-full .wpforms-form input[type=range], div.wpforms-container-full .wpforms-form input[type=search], div.wpforms-container-full .wpforms-form input[type=tel], div.wpforms-container-full .wpforms-form input[type=text], div.wpforms-container-full .wpforms-form input[type=time], div.wpforms-container-full .wpforms-form input[type=url], div.wpforms-container-full .wpforms-form input[type=week], div.wpforms-container-full .wpforms-form select, div.wpforms-container-full .wpforms-form textarea {
	  background: #fafafa;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  color: #888;
  width: 95%;
}



.agenda_link_titel .wpuf-label {
	/*display: none;*/
}

ul.wpuf-form li.agenda_link {
	margin-bottom: 0px;
}


.agenda_datum {
	display: inline-block;
	font-size: 32px;
	width: 70px;
	text-align: left;
	vertical-align: top;
}

.agenda_content {
	display: inline-block;
	width: 700px;
	text-align: left;
	border-left: 1px solid #000;
	padding-left: 15px;
}

.agenda_content {
	font-size: 16px;
	line-height: normal;
}

.agenda_content h3 {
	font-size: 24px;
	margin-top: -5px;
	margin-bottom: 10px;
	line-height: normal
}

.agenda_veranstalter, .agenda_zeit, .agenda_ort {
	display: inline-block;
	margin-bottom: 5px;
	
}

.agenda_kurzbeschreibung {
	display: inline-block;
	margin-top: 5px;
}

.agenda_info tr td:first-child {
	padding-right: 20px;
}

.single-agendaeintrag main {
	font-size: 20px;
}

.header #inner-header {
	position: relative;
}

#memjoin_ct {
	position: absolute;
	right: 0px;
	margin-top: 30px;
}

#memjoin_ct a {
	text-decoration: none;
}

#memjoin {
	background: linear-gradient(135deg, #F73A3A 0%, #FF5800 59.73%, #E55A19 100%);
	color: #fff;
	text-decoration: none;
	font-style: italic;
	font-size: 24px;
	font-weight: bold;
	line-height: normal;
	-webkit-border-radius: 100px;
border-radius: 100px;
	width: 128px;
	height: 128px;
	padding-top: 25px;
	text-align: center;
	-moz-transform: rotate(-8deg);
-webkit-transform: rotate(-8deg);
-o-transform: rotate(-8deg);
-ms-transform: rotate(-8deg);
transform: rotate(-8deg);
	transition: all 0.5s;
}

#memjoin span {
	font-size: 28px;
}


#memjoin:hover {
	background: linear-gradient(135deg, #FF5800 0%, #FF5800 59.73%, #FF5800 100%);
}







/* Mitglieder */

.box_mitglied {
	position: relative;
	width: 280px;
	height: 160px;
	margin-right: 30px;
	margin-bottom: 30px;
	border: 1px solid rgba(0,0,0,0.1);
	display: inline-block;
	float: left;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.box_mitglied_overlay {
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	padding: 10px;
	background-color: rgba(0,0,0,0.85);
	color: #fff;
	text-align: center;
	align-items: center;
	font-weight: normal;
	opacity: 0;
	transition: all 0.5s;
}

.box_mitglied:hover .box_mitglied_overlay {
	opacity: 1;
}

.box_mitglied_text {
	width: 100%;
}

.box_mitglied_titel {
	font-size: 18px;
	font-weight: bold;
	display: inline-block;
	margin: 5px 0px;
}

.box_mitglied_typ {
	font-size: 14px;
	font-weight: normal;
	display: inline-block;
	margin: 5px 0px;
	text-transform: capitalize;
}

body.fr .box_mitglied_typ {
	text-transform: none;
}

.box_mitglied_inline {
	position: absolute;
	width: 100%; 
	height: 100%;
	display: flex;
	justify-content: center;
 	align-items: center;
	text-align: center;
}

.box_mitglied_mobinfo {
	display: none;
}

/* Themen Banner */

#themen_banner_inc {
	display: none;
}

.themen_banner_ct {
	position: static;
	display: inline-block;
	width: 100%;
	height: 150px;
	margin-bottom: 20px;
}

.themen_banner {
	position: absolute;
	display: inline-block;
	width: 100%;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding-top: 20px;
	padding-bottom: 25px;
	left: 0;
	margin-top: 5px;
	text-align: center;	
}

.themen_banner_inner {
	display: inline-block;
	text-align: left;
	width: 100%;
	max-width: 936px;
}

.themen_banner_inner h4 {
	font-size: 20px;
}

.themen_banner_inner p {
	margin: 0px;
}

.themen_banner_inner a {
	font-size: 23px;
	line-height: 28px;
	padding-bottom: 5px;
	margin-bottom: 10px;
	display: inline-block;
	color: #000;
	border-bottom: 1px solid #000;
	margin-right: 20px;
	text-decoration: none;
}

.themen_banner_inner a:nth-of-type(3) {
	margin-right: 0px;
}

@media only screen and (min-width: 960px) {
body.fr .themen_banner_inner a {
	font-size: 21px;
	line-height: 22px;
}
}

.themen_banner_inner a:hover {
	color: #F73A3A;
	border-bottom: 1px solid #F73A3A;
}

.themen_banner_footer .themen_banner {
	padding-bottom: 0px;
	border-bottom: none;
}



/* Themen Buttons */

.themen_button {
	width: 100%;
	height: 240px;
	display: inline-block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	border-bottom: none !important;
}

.themen_button span {
	position: absolute;
	bottom: 30px;
	left: 30px;
	font-style: italic;
	font-weight: bold;
	font-size: 40px;
	color: #fff;
	letter-spacing: 1px;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
}


/* Newsletter */

.block_newsletter {
	margin-left: -15px;
	margin-right: -15px;
}



.newsletter_inner {
	padding: 15px;
background: #f73a3a; /* Old browsers */
background: -moz-linear-gradient(-45deg,  #f73a3a 0%, #e55a19 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  #f73a3a 0%,#e55a19 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  #f73a3a 0%,#e55a19 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f73a3a', endColorstr='#e55a19',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
color: #fff;
}

.newsletter_inner h4 {
	color: #fff;
}

.newsletter_inner input {
	font-size: 16px;
}

.newsletter_inner input[type='text'] {
	background-color: #fff;
	width: 100%;
	max-width: 400px;
	border-bottom: none;
	display: inline-block;
	margin-bottom: 0px;
	vertical-align: top;
}

.newsletter_inner input[type='submit']{
	display: inline-block;
	padding: 0px 30px;
	padding-top: 1px;
	height: 40px;
	background-color: #fff;
	border: none;
	color: #F73A3A;
	vertical-align: top;
	margin-left: 3px;
	transition: all 0.5s;
}

.newsletter_inner input[type='submit']:hover {
	background-color: #000;
	color: #fff;
}

#mc_embed_signup div.mce_inline_error {
	padding: 0px 0px 5px 0px !important;
	font-weight: normal !important;
	color: #D30003 !important;
	font-size: 16px;
	background-color: transparent !important;
}

#mce-responses {
	display: none;
}


/* Foldbox */

.foldbox_ct {
	width: 100%;
	margin-top: 3px;
}

/*
.foldbox_title {
	padding: 10px;
	background-color: #E63B21;
	color: #fff;
	cursor: pointer;
	cursor: hand;
	transition: background-color 0.5s;
}

.foldbox_title.foldbox_active {
	background-color: #000;
}
*/

.foldbox_title {
	padding: 10px 0px;
	color: #000;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
	font-weight: bold;
}

.foldbox_title::before {
	font-family: FontAwesome;
    content: "\f105";
	position: absolute;
	margin-left: -15px;
	font-size: 24px;
	margin-top: -4px;
}



.foldbox_title.foldbox_active::before {
	font-family: FontAwesome;
    content: "\f107";
	color: #E63B21;
	position: absolute;
	margin-left: -21px;
	font-size: 24px;
}

.foldbox_content {
	display: none;
	/*background-color: rgba(0,0,0,0.05);*/
	/*padding: 10px;*/
	padding-bottom: 20px;
}



/* Ico Links */

a.icon {
	margin-left: 1.3em;
	margin-bottom: 0.5em;
	display: inline-block;
	line-height: normal;
}

a.icon::before {
	font-family: "FontAwesome";
	color: #000;
	position: absolute;
	margin-left: -1.3em;
}

a.icon:hover::before {
	color: #F73A3A;
}

a.icon-doc::before {
	content: "\f0f6";
}

a.icon-link::before {
	content: "\f08e";
}




/* Portraits */

.prt_teambox {
	padding-left: 250px;
}

.prt_teambox .prt_img {
	width: 220px;
	height: auto;
	display: inline-block;
	margin-left: -250px;
	float: left;
}

.prt_img img {
	width: 100%;
	height: auto;
}

.ico_link {
	display: inline-block;
	margin-right: 25px;
}

.prt_more_content {
	display: none;
	padding-bottom: 20px;
	padding-top: 20px;
}

.prt_more_content p {
	display: inline-block;
	margin: 0px;
	padding-bottom: 1em;
}

.prt_more_button {
	display: inline-block;
	color: #000;
	line-height: normal;
	cursor: pointer;
	cursor: hand;
	border-bottom: 1px solid #000;
	margin-right: 25px;
}

.prt_more_button:hover {
	color: #F73A3A;
	border-bottom: 1px solid #F73A3A;
}

.prt_more_button .fa-minus-square {
	display: none;
}

.prt_more_button.prt_more_open .fa-minus-square {
	display: inline;
}

.prt_more_button.prt_more_open .fa-plus-square {
	display: none;
}

.prt_teambox.prt_medium {
	padding-left: 200px;
}

.prt_teambox.prt_medium .prt_img {
	width: 175px;
	margin-left: -200px;
}


/* Pressespiegel */


.page-template-page-pressespiegel h3 {
	font-size: 28px;
	line-height: normal;
	margin-bottom: 5px;
}

.pressespiegel_content p {
	margin: 0px;
	padding: 0px;
}



/* UPDLF 2 */

#content ul {
	list-style: disc;
	overflow: hidden;
}

.page-template-page-newsletter #content ul {
	list-style: none;
}


.page-id-65 #memjoin_ct, .page-id-126 #memjoin_ct, .page-id-1622 #memjoin_ct, .page-id-1636 #memjoin_ct, .page-id-8793 #memjoin_ct, .page-id-8853 #memjoin_ct, .page-id-8995 #memjoin_ct, .page-id-17116 #memjoin_ct {
	display: none;
}



a.ctabtn, .wp-block-button a {
	background: linear-gradient(135deg, #F73A3A 0%, #FF5800 59.73%, #E55A19 100%);
	color: #fff !important;
	display: inline-block;
	padding: 8px 20px;
	margin: 5px 0px;
	border: none;
	border-radius: 0;
	transition: background 0.5s;
}

a.ctabtn:hover, .wp-block-button a:hover {
	background: linear-gradient(135deg, #FF5800 0%, #FF5800 59.73%, #FF5800 100%);
	border: none;
	color: #fff !important;
}

img.size-full {
	max-width: 100%;
	height: auto;
}

.page-numbers {
	text-align: center;
}

.page-numbers li {
	list-style: none;
	display: inline;
	margin: 0 5px;
}

.page-numbers li::before {
	display: none !important;
}

.page-numbers a, .page-numbers a:hover {
	border-bottom: none;
}

.page-numbers .current {
	color: #F73A3A;
}

.page-numbers .next {

}

.page-numbers .next::after {
	/*font-family: FontAwesome;*/
    content: "\2192";
	display: inline-block;
	font-size: 28px;
	position: relative;
	color: #F73A3A;
	top: 2px;
}

.page-numbers .next:hover::after {
	color: #000000;
}

.page-numbers .prev::after {
	/*font-family: FontAwesome;*/
    content: "\2190";
	display: inline-block;
	font-size: 28px;
	position: relative;
	color: #F73A3A;
	top: 2px;
}

.page-numbers .prev:hover::after {
	color: #000000;
}


.page-numbers li:nth-child(1)::before {
	content: "\Seite";
	display: inline-block;
	margin-right: 10px;
}

.fr .page-numbers li:nth-child(1)::before {
	content: "\Page";
}

.paged .page-numbers li:nth-child(2)::before {
	/*content: "\Seite";
	display: inline-block;
	margin-right: 10px;*/
}

.fr .paged .page-numbers li:nth-child(2)::before {
	content: "\Page";
}

.paged .page-numbers li:nth-child(1)::before {
	display: none;
}


/* galerie */

.gallery {
	position: relative;
	display: inline-block;
}

.gallery dl {
	display: none;
}

#gallery-4.gallery dl img {
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
	transition: all 0.5s;
}

#gallery-4.gallery dl:hover img {
	-webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

#gallery-5.gallery dl img {
	-webkit-filter: brightness(100%);
    filter: brightness(100%);
	transition: all 0.5s;
}

#gallery-5.gallery dl:hover img {
	-webkit-filter: brightness(70%);
    filter: brightness(70%);
}

.gallery dl:first-child {
	display: inline-block;
	width: 100%;
	max-width: 700px;
	position: relative;
}

.gallery dl:first-child a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

.gallery dl:first-child a::before {
	display: inline-block;
	content: "Zur Fotogalerie \2192";
	color: #fff;
	position: absolute;
	bottom: 9px; 
	left: 0px;
	padding: 8px 20px;
	border: none;
	background: linear-gradient(135deg, #F73A3A 0%, #FF5800 59.73%, #E55A19 100%);
	opacity: 1 !important;
	z-index: 10;
	transition: all 2s;
}

.fr .gallery dl:first-child a::before {
	content: "Voir la galerie de photos \2192";
}



#gallery-4.gallery dl:first-child a::before {
	bottom: 29px;
	left: 20px;
}

#gallery-5.gallery dl:first-child a::before {
	bottom: 9px;
	left: auto;
	right: 0px;
}

#gallery-6.gallery dl:first-child a::before {
	bottom: -12px;
	left: 0px;
	transition: all 0.5s;
}

#gallery-6.gallery:hover dl:first-child a::before {
	left: 20px;
}

.nivo-lightbox-theme-default .nivo-lightbox-close {
	width: 25px;
	height: 30px;
	opacity: 1 !important;
}


.fancybox-bg {
	position: absolute;
	width: 100%;
	height: 100%;
}

.fancybox-infobar {
	color: #fff;
	mix-blend-mode: normal;
}


/* Fixed Header */

.header {
	position: absolute;
	width: 100%;
	z-index: 50;
}

.header.sticky {
	position: fixed;
	margin-top: -130px;
}

.header #memjoin_ct {
	opacity: 1;
	visibility: visible;
	transition: visibility 0s linear 500ms, opacity 500ms;
}


.header.sticky #memjoin_ct {
	opacity: 0;
	visibility: hidden;
	transition: visibility 0s linear 0s, opacity 500ms;
}


#content {
	padding-top: 200px;
}



/* Filter Box */

.sct_dropdown {
	display: inline-block;
	width: 250px;
	z-index: 20;
	position: relative;
}

.sct_dropdown span {
	display: inline-block;
	/*background-color: rgba(198,237,255,1);*/
	background-color: rgba(235,235,235,1);
	padding: 5px 10px;
	width: 100%;
	position: relative;
	cursor:  pointer;
	cursor: hand;
}

.sct_dropdown span::after {
	font-family: FontAwesome;
    content: "\f078";
	position: absolute;
	right: 10px;
	top: 3px;
}

.sct_dropdown ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	position: absolute;
	width: 250px;
	display: none;
}

.sct_dropdown ul li {
	margin: 0px;
	padding: 0px;
	border-top: 1px solid #fff;
	display: inline-block;
	width: 100%;
}

.sct_dropdown ul li a {
	border-bottom: none;
	padding: 5px 10px;
	display: inline-block;
	width: 100%;
	background-color: rgba(245,245,245,1.00);
	color: #000 !important;
}

.sct_dropdown ul li a:hover {
	color: #F73A3A !important;
}



/* itemlist */



.sct_itemlist ul {
	margin: 0px;
	padding: 0px;
}

.sct_itemlist ul li {
	list-style: none;
	margin-bottom: 10px;
}


/* Nivo Slider */

.nivo-lightbox-theme-default.nivo-lightbox-overlay {
/*	background-color: rgba(198,237,255,0.75) !important;*/
}

.nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
/*	background-color: rgba(198,237,255,1) !important;*/
}

.nivo-lightbox-theme-default .nivo-lightbox-image img {
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
}

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	opacity: 1 !important;
}


/* NL flyin */

#nl_flyin {
	width: 330px;
	position: fixed;
	top: 50%;
	left: 60%;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
	display: inline-block;
	opacity: 0;
	z-index: 10;
	transition: left 1s, opacity 1s;
}

#nl_flyin_ct {
	z-index: 5;
}



#nl_flyin.actv {
	opacity: 1;
	left: 50%;
}

#nl_flyin_form {
	margin-top: 10px;
}

#nl_flyin.newsletter_inner input[type="text"] {
	max-width: 200px;
}

#nl_flyin.newsletter_inner input[type="submit"] {
	padding: 0px 12px;
}

.flyin_title {
	font-weight: bold;
	font-style: italic;
	font-size: 24px; 
	line-height: 100%;
}

.flyin_close {
	width: 30px;
	height: auto;
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
	cursor: hand;
}

/* Mobmenu */

#mob_menu_icon {
	/*display: inline-block !important;*/
}



/* WPML */

#head_lng_switch {
	display: inline-block;
	position: relative;
	top: -5px;
}

.wpml-ls, .wpml-ls ul {
	display: inline;
}

.wpml-ls ul li a span {
	display: none;
}

.wpml-ls-item a {
	color: #000;
	padding-top: 0px;
	padding-bottom: 0px;
}

.wpml-ls-item a:hover {
	color: #F73A3A;
}

.wpml-ls-item-de a::before {
	content: "de";
}

.wpml-ls-item-de a {
	border-right: 1px solid #000;
}

.wpml-ls-item-fr a::before {
	content: "fr";
}

.wpml-ls-legacy-list-horizontal {
	border: none !important;
	padding: 0px !important;
}

.wpml-ls-legacy-list-horizontal a {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

/* upds 18_3 */

.wp-caption {
	padding: 0px;
	background-color: transparent;
	text-align: left;
	margin-bottom: 20px;
}

.wp-caption p.wp-caption-text {
	text-align: left;
	margin-top: 0px;
	font-size: 15px;
}


.abstract_download {
	border-top: 1px solid #000;
	padding-top: 8px;
	padding-bottom: 9px;
}

.abstract_download .ctabtn {
	width: 100%;
	text-align: center;
	letter-spacing: 1px;
}

.quad_spacer {
	width: 100%;
	height: auto;
	margin-bottom: 0px;
}

.def_ul_list li input {
	margin-right: 5px;
}

#mob_ext_footer {
	display: none;
	padding-left: 20px;
	padding-right: 20px;
}

#mob_ext_footer p {
	padding-left: 0;
}

#mob_ext_menus {
	display: none;
}

.def_pad_right {
	padding-right: 120px;
}

.mc4wp-alert {
	color: #f00 !important;
}

.main_image img {
	width: 100%;
}




/* Digitale Publikation */

.dp_wrapper_ct {
	position: relative;
	padding-left: 336px;
}



#dp_inhalt_liste_wrapper {
	margin-top: 60px;
	padding-bottom: 40px;
}

#dp_inhalt_liste {
	position: absolute;
	top: 340px;
	left: 350px;
	font-style: italic;
	font-size: 18px;
	font-weight: bold;
}

#dp_inhalt_liste_titel {
	position: absolute;
	color: #F73A3A;
	font-style: italic;
	font-size: 32px;
	font-weight: bold;
	z-index: 10;
	line-height: normal;
	top: -20px;
}

.mkt_titel {
	font-size: 24px;
	margin-left: 55px;
}

.mkt {
	display: inline-block;
	margin-bottom: 5px;
	cursor: pointer;
	cursor: hand;
	background-image: none !important;
}

.mkt:hover, .mkt.active {
	color: #F73A3A;
}

.mknum {
	font-size: 24px;
	color: #F73A3A;
	display: inline-block;
	margin-right: 10px;
	text-align: right;
	width: 40px;
}

.pvik {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s;
}

.pvik.active {
	opacity: 1;
}

#main_k_content {
	font-size: 20px;
	margin-top: 40px;
	position: relative;
}

.chapter_menu_ct {
	width: 300px;
	-webkit-box-shadow: 0 0 10px 0 rgba(198,192,186,1);
	box-shadow: 0 0 10px 0 rgba(198,192,186,1);
	min-height: 100px;
	position: absolute;
	margin-left: -336px;
	top: 5px;
}


.chapter_menu_ct.sticky {
	position: fixed;
	top: 100px;
}

.dp_teaser {
	font-size: 24px;
	margin-bottom: 0px !important;
}

.dp_banner {
	max-width: 936px !important;
	margin-left: -336px !important;
	width: 936px !important;
	position: relative;
	z-index: 5;
	margin-bottom: 20px !important;
}

.dp_banner_titel {
	color: #fff;
	font-size: 46px;
	line-height: normal;
	font-style: italic;
	font-weight: bold;
	position: absolute;
	margin-top: -200px;
	z-index: 10;
	left: -62px;
	padding-left: 140px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-shadow: 0 0 5px #000000;
	background-position: left center;
	background-size: contain;
	background-repeat: no-repeat;
}

#dp_banner_titel_k1 {
	background-image: url(https://www.swisscleantech.ch/files/num_k1.png);
}
#dp_banner_titel_k2 {
	background-image: url(https://www.swisscleantech.ch/files/num_k2.png);
}
#dp_banner_titel_k3 {
	background-image: url(https://www.swisscleantech.ch/files/num_k3.png);
}
#dp_banner_titel_k4 {
	background-image: url(https://www.swisscleantech.ch/files/num_k4.png);
}
#dp_banner_titel_k5 {
	background-image: url(https://www.swisscleantech.ch/files/num_k5.png);
}
#dp_banner_titel_k6 {
	background-image: url(https://www.swisscleantech.ch/files/num_k6.png);
}
#dp_banner_titel_k7 {
	background-image: url(https://www.swisscleantech.ch/files/num_k7.png);
}
#dp_banner_titel_k8 {
	background-image: url(https://www.swisscleantech.ch/files/num_k8.png);
}
#dp_banner_titel_k9 {
	background-image: url(https://www.swisscleantech.ch/files/num_k9.png);
}
#dp_banner_titel_k10 {
	background-image: url(https://www.swisscleantech.ch/files/num_k10.png);
}
#dp_banner_titel_k11 {
	background-image: url(https://www.swisscleantech.ch/files/num_k11.png);
}
#dp_banner_titel_k12 {
	background-image: url(https://www.swisscleantech.ch/files/num_k12.png);
}

.chapter_menu_image {
	background-image: url(https://www.swisscleantech.ch/files/banner_k0.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 150px;
}

.chapter_menu_title {
	padding: 5px 10px;
background: #f73a3a; /* Old browsers */
background: -moz-linear-gradient(-45deg,  #f73a3a 0%, #e55a19 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  #f73a3a 0%,#e55a19 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  #f73a3a 0%,#e55a19 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f73a3a', endColorstr='#e55a19',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
color: #fff;
	display: flex;
  justify-content: center;
  align-items: center;
	height: 70px;
	font-size: 21px;
	font-style: italic;
	font-weight: bold;
	text-align: center;
	line-height: normal;
}

.chapter_menu_waypoints {
	position: relative;
}

.chapter_menu_waypoints > span {
	display: inline-block;
	text-align: center;
	width: 100%;
	color: #F73A3A;
	font-size: 21px;
	font-weight: bold;
	font-style: italic;
	padding: 10px;
	line-height: normal;
	margin-bottom: 5px;
}

.wp_ico, .chapter_menu_waypoints .small_wp_ico {
	border: 3px solid #ccc;
	width: 60px;
	height: 60px;
	background-color: #fff;
	cursor: pointer;
	cursor: hand;
	position: absolute;
	top: 0px;
	left: 0px;
	-webkit-border-radius: 100px;
	border-radius: 100px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#dp_inhalt_map_ct .wp_ico {
	z-index: 10;
	width: 80px;
	height: 80px;
}

.wp_ico.active, .chapter_menu_waypoints .small_wp_ico.active, .chapter_menu_waypoints .const_active {
	border: 3px solid #F73A3A;
}

.chapter_menu_waypoints .small_wp_ico {
	width: 30px;
	height: 30px;
}

.chapter_menu_waypoints .wp_k13 {
	left: 15px;
	top: 252px;
}

.wp_k12 {
	left: 66px;
	top: 220px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k12_gray.png);
}
.wp_k12.active, .wp_k12.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k12_color.png); }
#dp_inhalt_map_ct .wp_k12 {
	left: 145px;
	top: 815px;
}

.wp_k11 {
	left: 156px;
	top: 213px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k11_gray.png);
}
.wp_k11.active, .wp_k11.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k11_color.png); }
#dp_inhalt_map_ct .wp_k11 {
	left: 155px;
	top: 665px;
}

.wp_k10 {
	left: 235px;
	top: 205px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k10_gray.png);
}
.wp_k10.active, .wp_k10.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k10_color.png); }
#dp_inhalt_map_ct .wp_k10 {
	left: 0px;
	top: 635px;
}

.wp_k9 {
	left: 196px;
	top: 127px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k9_gray.png);
}
.wp_k9.active, .wp_k9.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k9_color.png); }
#dp_inhalt_map_ct .wp_k9 {
	left: 80px;
	top: 505px;
}

.wp_k8 {
	left: 107px;
	top: 128px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k8_gray.png);
}
.wp_k8.active, .wp_k8.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k8_color.png); }
#dp_inhalt_map_ct .wp_k8 {
	left: 10px;
	top: 365px;
}

.wp_k7 {
	left: 13px;
	top: 140px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k7_gray.png);
}
.wp_k7.active, .wp_k7.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k7_color.png); }
#dp_inhalt_map_ct .wp_k7 {
	left: 155px;
	top: 350px;
}

.wp_k6 {
	left: 40px;
	top: 67px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k6_gray.png);
}
.wp_k6.active, .wp_k6.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k6_color.png); }
#dp_inhalt_map_ct .wp_k6 {
	left: 168px;
	top: 190px;
}

.wp_k5 {
	left: 144px;
	top: 64px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k5_gray.png);
}
.wp_k5.active, .wp_k5.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k5_color.png); }
#dp_inhalt_map_ct .wp_k5 {
	left: 325px;
	top: 225px;
}

.wp_k4 {
	left: 232px;
	top: 65px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k4_gray.png);
}
.wp_k4.active, .wp_k4.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k4_color.png); }
#dp_inhalt_map_ct .wp_k4 {
	left: 380px;
	top: 80px
}

.wp_k3 {
	left: 210px;
	top: 2px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k3_gray.png);
}
.wp_k3.active, .wp_k4.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k3_color.png); }
#dp_inhalt_map_ct .wp_k3 {
	left: 540px;
	top: 135px
}

.wp_k2 {
	left: 130px;
	top: -5px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k2_gray.png);
}
.wp_k2.active, .wp_k2.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k2_color.png); }
#dp_inhalt_map_ct .wp_k2 {
	left: 625px;
	top: -10px
}

.wp_k1 {
	left: 53px;
	top: -5px;
	background-image: url(https://www.swisscleantech.ch/files/ico_k1_gray.png);
}
.wp_k1.active, .wp_k1.const_active { background-image: url(https://www.swisscleantech.ch/files/ico_k1_color.png); }
#dp_inhalt_map_ct .wp_k1 {
	left: 754px;
	top: 68px
}

.chapter_menu_waypoints .wp_k0 {
	left: 8px;
	top: -3px;
}




.wp_ico:hover, .chapter_menu_waypoints .small_wp_ico:hover {
	border: 3px solid #F73A3A;
}

.expcol_ct {
	margin-bottom: 30px;
}

.expcol_titel {
	display: block;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: bold;
	line-height: normal;
}

.expcol_image {
	font-size: 15px;
}

.expcol_image img {
	max-width: 50% !important;
	height: auto;
	float: left;
	margin-right: 20px !important;
}

.expcol_ico {
	/*text-align: center;*/
	position: relative;
	z-index: 8;
	padding-left: 200px;
}

.morecol_ct .expcol_ico {
	display: none;
}

.expcol_ico .pbtitel {
	font-size: 18px;
	font-style: italic;
	font-weight: bold;
	color: #91BEE8;
	position: absolute;
	display: inline-block;
	margin-left: 55px;
	margin-top: 8px;
	letter-spacing: 1px;
	transition: all 0.5s;
	 transition-delay: 0.5s;
	cursor: pointer;
	cursor: hand;
}

.morecol_ct .expcol_ico .pbtitel {
	color: #F73A3A;
}


.expcol_ico span {
	display: inline-block;
	text-align: center;
	width: 40px;
	height: 40px;
	border: 5px solid #91BEE8;
	-webkit-border-radius: 100px;
border-radius: 100px;
	font-weight: bold;
	font-size: 21px;
	color: #91BEE8;
	background-color: #fff;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
}

.morecol_ct .expcol_ico span {
	border: 5px solid #F73A3A;
	color: #F73A3A;
}

.expcol_ico span.novis {
	display: none;
}

.expcol_ico .pbtitel.novis {
	opacity: 0;
	transition: none;
	cursor: default;
}



.expcol_content {
	border: 5px solid #91BEE8; 
	background-color: #E2EEF9;
	padding: 40px 20px 20px 20px;
	top: -23px;
	position: relative;
	display: none;
}

.morecol_content {
	position: relative;
}

.teaser_sub_icon {
	width: 200px;
	height: auto;
}

.dp_inline_graf {
	font-size: 16px;
}

.dp_inline_graf img {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	margin-bottom: 30px;
	margin-top: 10px;
}

.dp_inline_graf a, .dp_inline_graf a:hover {
	border-bottom: none !important;
}

.zitat_prt_ct {
	margin-left: -75px; margin-top: 25px;
}

.zitat_prt_img {
	width: 150px; height: auto; -webkit-border-radius: 200px; border-radius: 200px; float: left; margin-right: 30px !important; margin-bottom: 40px;
}

.zitat_prt_subline {
	font-size: 16px; display: inline-block; margin-top: 15px;
}

.zitat_text {
	font-size: 28px; font-style: italic; font-weight: bold; line-height: normal;
}

.zitat_txt_ct {
	margin-left: 100px; 
	margin-right: 100px;
	margin-top: 50px;
	margin-bottom: 50px;
}


#dp_impressum_ct {
	margin-top: 80px;
	margin-bottom: 80px;
}

#dp_head_meta {
	text-align: center; border-bottom: 1px solid #000; padding-bottom: 20px; margin-bottom: 60px; margin-top: 0px; font-size: 18px; margin-left: -100px; margin-right: -100px;
}

#dp_head_banner {
	position: relative; height: 50vh; min-height: 450px; text-align: center; background-repeat: no-repeat; background-position: left center; background-size: cover;
}

#dp_head_banner_inner {
	position: absolute; bottom: 50px; width: 500px; text-align: left;
}

#dp_mob_menu {
	display: none;
}


.yt_wrapper {
	position: relative;
	padding-top: 56.25%;
}

.yt_wrapper iframe {
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	top: 0;
	left: 0;
}





/* algolia search */


.subjq {
	display: none;
}

.subtoggle {
	color: #999;
	font-size: 14px;
	padding-left: 10px;
	letter-spacing: 1px;
	cursor: pointer;
	cursor: hand;
}

.subtoggle span::before {
	content: "+";
}

.subtoggle.jqactive span::before {
	content: "-";
}

.subtoggle:hover {
	color: #666;
}

#facet-categories3 > div {
	margin-bottom: 10px;
}

.facet-item {
	border-bottom: none !important;
	cursor: default;
}

#facet-categories3:hover {
	color: #000 !important;
}

.subjq .facet-item {
	font-size: 18px;
	padding-left: 20px;
}



.search #memjoin_ct, #facet-categories, #facet-categories2, .jq-vernehmlassung, .fpts-beitrge {
	display: none;
}

.facet-item {
	
}

#facet-post-types {
	margin-bottom: auto;
}






#mobmenu_ct {
	position: relative;
	width: 30px;
	height: 30px;
}

.mobmenu_line {
	display: inline-block;
	background-color: #000;
	width: 100%;
	height: 4px; 
	margin-bottom: 4px;
	float: left;
	transition: all 0.5s;
}

#mob_menu_icon {
	display: none;
}

.form_dsgvo {
	display: block;
	width: 100%;
	font-size: 16px !important;
	font-style: italic;
	padding-bottom: 20px !important;
}

.form_dsgvo a {
	font-weight: bold;
}


.videoslidebg {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center center;
}



/* media queries digitale publikation */

@media only screen and (max-width : 970px)  {
	
	
	#mob_menu_icon {
		display: inherit;
	}
	
	
	#mobmenu_ct {
		display: inline-block;
		transition: all 0.5s;
	}
	
	
	.menuactive #mobmenu_ct #mml1 {
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-top: 8px;
	}
	
	.menuactive #mobmenu_ct #mml2 {
		opacity: 0;
	}
	
	.menuactive #mobmenu_ct #mml3 {
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin-top: -16px;
	}
	
	#menu-main_navigation, #menu-main_navigation-franzoesisch {
		display: none;
	}
	
	
	
	#dp_intro_text, #dp_head_meta {
		margin-right: auto !important;
		margin-left: auto !important;
	}
	
	#dp_head_banner h1, #dp_head_banner h5 {
		padding-left: 0px;
	}
	
	#dp_head_banner_inner {
		padding-left: 20px;
	}
	
	.page-template-page-digitale-publikation p, #dp_head_meta, #dp_intro_text, #dp_inhalt_liste_wrapper, .zitat_prt_ct, .dp_inline_graf, .expcol_ct, #dp_impressum_ct, .page-template-page-digitale-publikation h3 {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.page-template-page-digitale-publikation section .main_text, .page-template-page-digitale-publikation h4 {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.zitat_prt_ct {
		margin-left: auto;
		
	}
	
	#dp_inhalt_map_ct {
		display: none;
	}
	
	#dp_inhalt_liste {
		position: relative;
		top: auto;
		left: auto;
	}
	

	#dp_inhalt_liste_titel {
		position: relative;
		top: auto;
		margin-bottom: 40px;
	}
	
	.dp_wrapper_ct {
		padding-right: 0px;
		padding-left: 0px;
	}
	
	.dp_banner {
		width: 100% !important;
		margin-left: 0px !important;
	}
	
	.dp_banner_titel {
		left: 20px;
		margin-top: -150px;
		font-size: 32px;
		padding-left: 110px
	}
	
	.chapter_menu_ct {
		display: none;
	}
	
	
	
	
	#dp_mob_menu {
		position: fixed;
		top: 0px;
		width: 100%;
		right: -100%;
		padding-right: 40px;
		display: inherit;
		z-index: 20;
		transition: all 1s;
	}
	
	#dp_mob_menu.active {
		right: -40px;
	}
	
	#dp_mob_menu_wrapper {
		background-color: #fff;
		display: inline-block;
		position: relative;
		width: 100%;
		padding-top: 20px;
		padding-bottom: 20px;
		border-top: 5px solid #F73A3A;
	}
	
	#dp_mob_menu_text {
		line-height: normal;
	}
	
	#dp_mob_menu_text .mkt {
		margin-bottom: 5px;
		padding-left: 0px;
		padding-right: 10px;
		font-size: 14px;
	}
	
	#dp_mob_menu_text .mkt span {
		color: #F73A3A;
		display: inline-block;
		float: left;
		margin-bottom: 5px;
		margin-right: 5px;
		text-align: right;
		width: 30px;
	}
	
	#dp_mob_menu_button {
		background: #f73a3a; /* Old browsers */
background: -moz-linear-gradient(-45deg,  #f73a3a 0%, #e55a19 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  #f73a3a 0%,#e55a19 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  #f73a3a 0%,#e55a19 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f73a3a', endColorstr='#e55a19',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
		position: absolute;
		display: inline-block;
		width: 40px;
		height: 40px;
		top: -5px;
		left: -40px;
		text-align: center;
	}
	
	.mob_menu_line {
		display: inline-block;
		width: 24px;
		height: 4px;
		background-color: #fff;
		line-height: 0px;
		position: absolute;
		left: 8px;
	}
	
	.mob_menu_line:nth-child(1){
		top: 8px;
	}
	.mob_menu_line:nth-child(2){
		top: 17px;
	}
	.mob_menu_line:nth-child(3){
		top: 26px;
	}
	
	.intro_boxes_ct {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.intro_boxes_ct h4 {
		padding-left: 0;
	}
	
	.box_mitglieder_auszug {
		padding-left: 20px; 
		padding-right: 20px;
	}
	
	.box_mitglieder_auszug h4 {
		padding-left: 0;
	}
	
}

@media only screen and (max-width : 680px)  {
	
	.videoslidebg {
		display: none;
	}
	
	.page-template-page-digitale-publikation h1, .page-template-page-digitale-publikation h5 {
		font-size: 32px !important;
	}
	
	.page-template-page-digitale-publikation #main_k_content {
		font-size: 16px;
	}
	
	#dp_head_banner {
		min-height: 300px;
		height: 40vh;
		background-position: center center;
	}
	
	#dp_head_banner_inner {
		bottom: 25px;
		width: 100%;
	}
	
	.dp_banner_titel {
		margin-top: -115px;
		font-size: 24px;
		padding-left: 70px;
		left: 10px;
		padding-bottom: 0px;
		padding-top: 0px;
		background-size: 60px auto;
	}
	
	.expcol_ico {
		padding-left: 50px;
	}
	
	#dp_intro_text {
		font-size: 21px;
		line-height: 150%;
	}
	
	.dp_teaser {
		font-size: 19px;
		margin-bottom: 10px !important;
	}
	
	.zitat_txt_ct {
		margin-left: 40px;
		margin-right: 40px;
	}
	
	.zitat_text {
		font-size: 21px;
	}
	
	.dp_inline_graf {
		font-size: 12px;
	}
	
	.expcol_titel {
		font-size: 21px;
	}
	
	.expcol_image img {
		max-width: 100% !important;
		width: 100%;
		margin-right: auto !important;
		margin-bottom: 10px;
	}
	
	.teaser_sub_icon {
		width: 100px;
		position: relative;
		left: 50%;
		margin-left: -50px !important;
	}
	
	#dp_inhalt_liste_titel {
		font-size: 24px;
	}
	
	#dp_inhalt_liste {
		font-size: 16px;
		line-height: normal;		
	}
	
	.mkt {
		margin-bottom: 20px; 
	}
	
	.mkt_titel {
		margin-left: auto;
	}
	
	.mknum {
		margin-top: -2px;
		float: left;
		width: auto;
		font-size: 21px;
	}
	
	.zitat_text {
		font-size: 21px;
	}
	
	.zitat_prt_img {
		width: 100px;
		margin-right: 15px !important;
		margin-bottom: 15px !important;
	}
	
	.zitat_prt_subline {
		font-size: 12px;
		margin-top: 10px;
	}
	
	#dp_scm_header {
		font-size: 21px;
	}
	
	.morecol_ct .expcol_ico {
		display: inherit;
		padding-left: 0;
		text-align: center;
		padding-right: 100px;
		padding-bottom: 20px;
	}
	
	.morecol_content {
		display: none;
	}
	
	.dp_banner_titel {
		min-height: 60px;
		display: flex;
		align-items: center;
	}
	
	.dp_banner_titel br {
		display: none;
	}
	
	.fr #dp_banner_titel_k2, .fr #dp_banner_titel_k11, .de #dp_banner_titel_k11 {
		display: inherit;
	}
	
	.themenseite_desktopbreak {
		display: none;
	}
	
	.themen_banner_ct .themen_banner {
		padding-left: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #000;
	}
	
	.themen_banner h4 {
		font-size: inherit;
	}
	
	.intro_box {
		width: 100%;
		margin-right: 0;
		height: auto;
		padding-bottom: 20px;
	}
	
	.intro_box p {
		padding: 0;
	}
	
	
}


/* --- */



/* Home Banner */

.footer {
	position: relative;
}

#content.hb_aktiv {
	position: relative;
	background-color: #fff;
	z-index: 10;
	padding-top: 0px;
}

.hb_link {
	font-size: 24px; color: #fff !important;
}

.hb_link p {
	text-decoration: none !important; border-bottom: 1px solid #fff !important; 
	color: #2fb1cd;
	background-color: #fff;
	text-shadow: none;
	padding: 1px 10px;
	display: inline-block;
}

.hb_link a {
	/*text-decoration: none !important; border-bottom: 1px solid #fff !important; 
	color: #2fb1cd;
	text-shadow: none;*/
}

.hb_sld_link:hover span, .hb_sld_link:hover p {
	color: #F73A3A !important;
}

.hb_spacer {
	width: 100%; height: 70vh; position: relative; color: #fff; top: 0px;
	min-height: 600px;
}

.hb_wrapper {
	width: 100%; height: 100%; position: absolute; background-size: cover; background-repeat: no-repeat; background-position: center center; top: 0px; text-align: center; 
}


.hb_inner_ct {
	display: inline-block; width: 800px; margin-right: 136px; position: relative; height: 100%; text-align: left;
}

.hb_textbox {
	position: absolute; display: inline-block; bottom: 5vw; color: #fff; text-shadow: 0 0 10px #000000;
}

.hb_textbox h1, .hb_textbox h5 {
	line-height: normal; font-size: 52px;
}

.hb_textbox h5 span {
	color: #2fb1cd;
	background-color: #fff;
	padding-left: 10px;
	padding-right: 10px;
	line-height: 140%;
	box-decoration-break: clone;
	text-shadow: none;
}


@media only screen and (max-width : 970px)  {
	

	
.hb_textbox {
	bottom: 50px;
	}
	
.hb_textbox h1, .hb_textbox h5 {
	line-height: normal; font-size: 42px;
}

.hb_inner_ct {
	width: 100%;
}	
	
.hb_link {
	font-size: 21px;
}	
	
	.page-template-default h3 {
		/*padding-left: 20px;
		padding-right: 20px;*/
	}
	
	.page-template-default .main_image {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.page-template-default main {
		padding-top: 20px;
	}
	
	.page-template-default main > p {
		padding-right: 20px;
	}
	
	.page-template-default .mgausz_ct, .page-template-default .home_block  {
		padding-right: 20px;
		padding-left: 20px;
	}
	

}

@media only screen and (max-width : 680px)  {

	.hb_textbox {
		width: 90%;
		bottom: 20px;
	}
	
	
	.hb_textbox h1, .hb_textbox h5 {
	line-height: normal; font-size: 28px;
}
	
	.hb_link {
	font-size: 18px;
}
	


	
}


/* Home Slider */

#hsld_spacer {
	width: 100%; height: 195px; position: relative; color: #fff; top: 0px;
}

#hsld_wrapper {
	width: 100%; height: auto; position: relative; padding-top: 38%; padding-bottom: 30px;  text-align: center; top: 0px;
}

.slide_format_spacer {
	width: 100%;
	position: relative;
	padding-top: 38%;
}

#hsld_wrapper .flexslider {
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

#hsld_wrapper .hb_wrapper {
	background-position: center center; background-size: cover; background-repeat: no-repeat; text-align: center;
}

.flex-control-paging a {
	background: #000 !important;
}

#hsld_wrapper .flex-control-nav {
	bottom: -10px;
}

.flex-control-paging a.flex-active {
	background: #F73A3A !important;
}

.flexslider {
	border: none !important;
}

.footer {
	position: relative;
	z-index: 10;
}

.flex-direction-nav a {
	background-color: #F73A3A;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	text-align: center;		
	opacity: 0;
}

.flexslider:hover .flex-direction-nav a {
	opacity: 1 !important;
}

.flex-direction-nav .flex-next {
	right: 10px !important;
}

.flex-direction-nav .flex-prev {
	left: 10px !important;
}

.flex-direction-nav a.flex-next::before {
	font-family: "FontAwesome";
	content: "\f105" !important;
	color: #fff;
	font-size: 36px;
	margin-top: -7px;
	margin-left: 2px;
	text-align: center;
	width: 40px;
	height: 40px;
}

.flex-direction-nav a.flex-prev::before {
	font-family: "FontAwesome";
	content: "\f104";
	color: #fff;
	font-size: 36px;
	margin-top: -7px;
	margin-left: -4px;
	text-align: center;
	width: 40px;
	height: 40px;
}

.textbg_black30.hb_textbox {
	padding: 20px;
	background-color: rgba(0,0,0,0.3);
}

.textbg_black50.hb_textbox {
	padding: 20px;
	background-color: rgba(0,0,0,0.5);
}

.textbg_black70.hb_textbox {
	padding: 20px;
	background-color: rgba(0,0,0,0.7);
}

@media only screen and (max-width : 1200px)  {
	
	.hb_textbox h1, .hb_textbox h5 {
		font-size: 42px;
	}
	
	.hb_link {
		font-size: 21px;
	}
	
	.hb_textbox {
		bottom: 4vw;
	}
	
}


@media only screen and (max-width : 970px)  {
	#hsld_wrapper .flex-direction-nav {
		display: none !important;
	}
	
	#hsld_spacer {
	height: 110px; 
		min-height: auto;
}

	.hb_textbox {
		padding-left: 20px;
	}	

	
.hb_textbox h1, .hb_textbox h5 {
		font-size: 32px;
		padding-left: 0px;
	}
	
	.hb_link {
		font-size: 18px;
	}
	
	.hb_textbox {
		bottom: 2vw;
	}
	
	
}

@media only screen and (max-width : 680px)  {
	


	
.hb_textbox h1, .hb_textbox h5 {
		font-size: 21px;
		padding-bottom: 5px;
	}
	
	.hb_link {
		font-size: 14px;
	}
	
	.hb_textbox {
		bottom: 0vw;
	}



	
}



@media only screen and (max-width : 520px)  {
	


	
.hb_textbox h1, .hb_textbox h5 {
		font-size: 16px;
		padding-bottom: 0px;
	}
	
	.hb_textbox h1 span, .hb_textbox h5 span {
		padding: 3px;
		line-height: 170%;
		display: inline;
	}
	
	.hb_link {
		font-size: 11px;
	}
	.hb_link p {
		padding: 1px 3px 0px 3px;
		margin-bottom: 5px;
	}
	
	.hb_textbox {
		bottom: 0vw;
		width: 100%;
	}

	#hsld_wrapper, .slide_format_spacer {
		padding-top: 55%;
	}


	
}



/* ---- */


/* update dez 18 */

.wpforms-container, .sct_form_frame {
	margin-top: 20px !important;
	padding-top: 40px !important;
	padding-left: 100px !important;
	padding-right: 100px !important;
	padding-bottom: 40px !important;
	background-color: rgba(198,237,255,0.55) !important;
	width: 85%;
}

.home_intro .sct_form_frame, .main_text .sct_form_frame {
	width: 100%;
}

.wpforms-field-medium {
	max-width: 95% !important;
}

.wpforms-field input, .sct_form_frame input[type='password'], .wpforms-field textarea {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	color: #000 !important;
	border: none !important;
	background-color: #fff !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;	
}

.more_posts_ct .cmpi, .themen_posts .cmpi {
	position: relative;
}

.video_play_overlay {
	position: absolute;
	width: 100%; 
	height: 100%;
	background-color: rgba(255,255,255,0);
	background-image: url(/wp-content/themes/sct/library/images/video_play_overlay.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.wp-video {
	width: 100% !important;
	height: auto !important;
}


@media only screen and (max-width : 970px)  {
	.wpforms-container, .sct_form_frame {
		width: 100%;
	}
}

@media only screen and (max-width : 680px)  {
	 .wpforms-container, .sct_form_frame {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	 .wpforms-field-medium {
		max-width: 100% !important;
	}
}




.material_bestellen_checkbox, .material_bestellen_anzahl {
/*	width: 50% !important;
	display: inline-block;
	float: left !important;
	clear: none !important;*/
}

.material_bestellen_anzahl input {
	/*max-width: 100% !important;*/
}


#wpforms-13066 .wpforms-form input[type=text], #wpforms-13066 .wpforms-form input[type=email] {
	width: 100% !important;
}

#wpforms-13066 .wpforms-field-medium {
	max-width: 100% !important;
}



/* update oct19 */


#portrait_slider {
	height: auto;
	margin-bottom: 0px;
}

#portrait_slider a {
	border-bottom: none !important;
}

#portrait_slider .flex-control-nav {
	bottom: 10px;
}

#portrait_slider .flex-direction-nav a {
	opacity: 1;
	border-bottom: none !important;
	top: 45%;
	
}

.statement_box_wrapper {
	padding-left: 100px; padding-right: 100px;
	margin-top: 20px;
}

.statement_box {
	background-color: rgba(198,237,255,0.55); -webkit-border-radius: 8px; border-radius: 8px; padding: 30px;
}

.statement_text {
	display: inline-block; width: 75%; float: left; padding-top: 30px; padding-right: 50px;
}

.statement_image {
	display: inline-block; width: 25%; float: left; font-size: 0.8em;
}

.statement_image img {
	width: 100%; height: auto; -webkit-border-radius: 8px; border-radius: 8px;
}


#portrait_slider .flex-direction-nav .flex-next {
	right: -60px !important;
	opacity: 0.5 !important;
}

#portrait_slider .flex-direction-nav .flex-next:hover {
	opacity: 1 !important;
}

#portrait_slider .flex-direction-nav .flex-prev {
	left: -60px !important;
	opacity: 0.5 !important;
}

#portrait_slider .flex-direction-nav .flex-prev:hover {
	opacity: 1 !important;
}

@media only screen and (max-width : 1200px)  {
	
	.flex-direction-nav {
		height: 60px;
	}
	
	.flex-direction-nav li {
		display: none;
	}
	
	
	
}

@media only screen and (max-width : 936px)  {
		.mgausz_ct {
		padding-left: 20px;
			padding-right: 20px;
	}
	
	
	
}


.sct_table {
	border-collapse: collapse;
}

.sct_table td {
	padding: 5px 10px;
	border: 1px solid #000;
}


@media only screen and (min-width : 960px)  {
	

	
.bmausz2, .bmausz5 {
	margin-left: 18px;
	margin-right: 48px;
}

.bmausz3, .bmausz6 {
	margin-right: 0px;
}
	
}

@media only screen and (max-width : 840px)  {

.statement_box_wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}


}

@media only screen and (max-width : 600px)  {

	.statement_box {
		padding: 20px;
	}
	
	.statement_text {
		width: 100%;
		padding-right: 0;
		padding-top: 0;
		padding-bottom: 30px;
		font-size: 0.9em;
	}

	.statement_image {
		width: 100%;
		max-width: 160px;
	}

}




/* update mitglieder */


.single-mitglieder #memjoin_ct {
	display: none;
}

.nm21_cols .abstract_ct {
		/*font-size: 16px;
		border-top: 2px solid;
		border-bottom: 2px solid;
		margin-top: 0.25em;*/
		width: 100%;
	}



.nm21_logo img {
	width: 100%;
	height: auto;
}

.nm21_cols .abstract_ct a, .nm21_bbt {
	color: #000000;
	text-decoration: underline;
	cursor: pointer;
}

.nm21_cols .abstract_ct a:hover, .nm21_bbt:hover {
	color: #F73A3A !important;
}

.nm21_bbt {
	font-size: 16px;
}

.nm21_webshop {
	padding-top: 0.5em;
	margin-top: 0.5em;
	border-top: 1px solid;
}

.nm21_cols h5 span {
	font-size: 0.66em;
	color: #F73A3A;
}

.nm21_angebot {
	border: 5px dashed #F73A3A;
	padding: 1em;
	background-color: rgba(0,0,0,0.02);
}


.page-id-19641 #memjoin_ct {
	display: none;
}

form.searchandfilter ul {
	padding-left: 0;
}

form.searchandfilter ul h4 {
	display: block;
}

form.searchandfilter > ul {
	display: grid;
	grid-template-columns: 1fr;
	grid-column-gap: 30px;
	background-color: rgba(198,237,255,0.55);
}

form.searchandfilter ul li {
	font-size: 16px;
	padding: 5px 0;
}

form.searchandfilter > ul > li {
	padding-left: 1em;
	padding-right: 1em;
}

form.searchandfilter > ul > li > label  {
	width: 100%;
}


.sf-field-reset {
	text-align: right;
}

.nm21_cols .abstract_ct p {
	margin-bottom: 0;
}

.sf-field-post-meta-mitgliedstyp {
	display: flex;
	width: 100%;
}

.sf-input-select {
	background-color: #f2f2f2;
}

.sf-field-post-meta-mitgliedstyp::after {
	content: 'Marktplatz';
	position: relative;
	bottom: -2.3em;
	font-weight: bold;
	left: auto;
	font-size: 1.3em;
}

body.fr .sf-field-post-meta-mitgliedstyp::after {
	content: 'Place du marché';
}

.sf-field-taxonomy-branchen::before {
	content: 'Unternehmen und ihre Angebote für eine klimafreundliche Wirtschaft – von Mitgliedern, für Mitglieder.';
	position: relative;
	left: auto;
	width: 100%;
	top:  auto;
	display: block;
	padding-top: 2em;
	padding-bottom: 1em;
	font-size: 1.3em;
}

body.fr .sf-field-taxonomy-branchen::before {
	content: 'Les entreprises et leurs offres pour une économie compatible avec le climat - par les adhérents, pour les adhérents.';	
}

.sf-field-post-meta-mitgliedstyp {
		background-color: #fff;
	}
	
	.sf-field-post-meta-mitgliedstyp ul {
			display: flex;		
		padding-bottom: 1em;
		flex-direction: column;
	}
	
	.sf-field-post-meta-mitgliedstyp ul li {
		margin-right: 2em;
		cursor: pointer;
	}
	
	.sf-field-post-meta-mitgliedstyp ul li input {
		display: none;
	}

	.sf-field-post-meta-mitgliedstyp .sf-label-radio {
		font-size: 1.3em;
		border-bottom: 1px solid;
		padding-left: 0 !important;
		cursor: pointer;
	}
	
	.sf-field-post-meta-mitgliedstyp .sf-label-radio:hover, .sf-field-post-meta-mitgliedstyp .sf-option-active .sf-label-radio {
		color: #F73A3A;
	}



@media only screen and (min-width : 840px)  {
	
	.nm21_cols {
		display: flex;
		justify-content: space-between;
	}
	
	.nm21_cols .abstract_wrapper {
		width: 30%;
	}
	
	.nm21_cols .nm21_desc {
		width: 65%;
	}
	
	.sf-field-post-meta-mitgliedstyp::after {
	content: 'Marktplatz';
	position: absolute;
	bottom: -2.2em;
	font-weight: bold;
	left: 1em;
	font-size: 1.3em;
}
	
	.sf-field-taxonomy-branchen::before {
	content: 'Unternehmen und ihre Angebote für eine klimafreundliche Wirtschaft – von Mitgliedern, für Mitglieder.';
	position: absolute;
	left: 1em;
	width: 340px;
	top:  2.3em;
	padding: 0 !important;
	font-size: 1.3em;
}
	
	.sf-field-post-meta-mitgliedstyp ul {
		flex-direction: row;
	}
	
	form.searchandfilter {
		position: relative;
	}
	
	form.searchandfilter > ul > li > label  {
		width: 360px;
	}
	
	form.searchandfilter > ul > li {
	padding-left: 0em;
	padding-right: 0em;
}
	
	form.searchandfilter h4  {
		padding-right: 0.5em;
	}
	
	.sf-field-taxonomy-branchen, .sf-field-post-meta-mitglied_kanton, .sf-field-post-meta-mitglied_vertrieb {
		display: flex !important;
		justify-content: flex-end;
	}
	
	.sf-field-taxonomy-branchen {
		padding-top: 20px !important;
	}
	
	form.searchandfilter.search-filter-disabled::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		background-image: url(/wp-content/themes/sct/library/images/sct_ico_loading.gif);
		background-repeat: no-repeat;
		background-size: auto 30%;
		background-position: center center;
		opacity: 0.5;
	}
	
	form.searchandfilter.search-filter-disabled ul {
		opacity: 0.4;
		pointer-events: none;
	}
	
	form.searchandfilter > ul {
		grid-template-columns: 1fr 1fr 1fr;
		border-left: 0;
		border-right: 0;
	width: calc(100% - 36px);
		padding-left: 0;
	padding-right: 0;
	}
	
	form.searchandfilter > ul > li {
		grid-column: span 3;
		padding-left: 1em;
		padding-right: 1em;
		position: relative;
	}
	
	.sf-field-post-meta-mitgliederangebot_status {
		grid-column: span 2 !important;
	}

	.sf-field-reset {
		grid-column: span 1 !important;
	}

	
	
	
	
	
}


@media only screen and (max-width : 970px)  {
	
	.single-mitglieder main {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.single-mitglieder .abstract_ct p, .single-mitglieder .nm21_desc p {
		padding: 0 !important;
	}
	
	.single-mitglieder .nm21_desc {
		margin-top: 2em;
	}
	
	.single-mitglieder .abstract_ct > div {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	
}






/* update content cols June 2022 */

.sct_flex_cols {
	margin: 1em 0;
	padding-right: 190px;
	display: inline-block;
}

.sct_flex_cols.no_padding {
	padding-right: 0;
}

.sct_flex_cols > tbody > tr {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 1.5em;
}

.sct_flex_cols.flex3cols > tbody > tr {
	grid-template-columns: 1fr 1fr 1fr;
}

.sct_flex_cols table {
	height: 100%;
	display: flex;
}

.sct_flex_cols table tbody {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.sct_flex_cols table tbody td:last-child {
	padding-top: 1em;
}

.sct_flex_cols table td > img {
	width: 100%;
	height: auto;
}


@media only screen and (max-width : 970px)  {
	
	.sct_flex_cols {
		padding-right: 0px;
		padding: 0px 20px !important;
	}
	
}

@media only screen and (max-width : 760px)  {
	
	.sct_flex_cols > tbody > tr, .sct_flex_cols.flex3cols > tbody > tr {
		grid-template-columns: 1fr;
		grid-row-gap: 3em;
}


	
	
	
}



/* Searchpage Algolia */

.ais-img-ct {
	width: 100%;
	max-width: 200px;
	float: left;
	display: inline-block;
	min-height: 40px;
}

.spimage_link {
	border-bottom: none;
	display: inline-block;
	width: 100%;
}

.spimage_link:hover {
	border-bottom: none !important;
}


.spimage {
	width: 100%;
	height: auto;
	-webkit-border-radius: 0 !important;
border-radius: 0 !important;
}

.ais-hits h3 {
	font-size: 24px;
	line-height: auto;
	font-style: italic;
	font-weight: bold;
	text-decoration: none !important;
	margin-bottom: 8px;
}

.ais-hits h3 a {
	border-bottom: none !important;
}

.ais-hits--thumbnail {
	margin-right: 20px;
}

.ais-hits .excerpt {
	font-size: 18px;
}

.ais-hits .excerpt p {
	font-size: 18px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.ais-refinement-list--list {
	font-size: 18px;
}

#ais-facets {
	width: 30%;
	padding-left: 0px;
}

#ais-main {
	width: 70%;
}

#frm-jq-verbandsnachricht .subtoggle, #frm-jq-vernehmlassung .subtoggle {
	display: none;
}


#algolia-search-box input {
	border-bottom: none;
	padding-left: 10px;
	background-color: rgba(0,0,0,0.07);
	color: #000;
}

#algolia-search-box input:focus {
	background-color: rgba(0,0,0,0.04);
}

#ais-main #searchsubmit {
	position: absolute;
	right: 0px;	
}



#ais-main #searchsubmit:hover {
	cursor: default;
	background-color: #000 !important;
}

.ais-hits--item em, .ais-hits--item a em {
	background-color: rgba(198,237,255,0.9);
	font-style: inherit;
}


.ais-pagination--item__active a {
	font-weight: normal;
	color: #F73A3A;
}

.ais-pagination--item__first a, .ais-pagination--item__last a, .ais-pagination--item__first span, .ais-pagination--item__last span {
	display: none;
}

.ais-pagination--item__next a, .ais-pagination--item__next a:hover {
	color: #fff !important;
}

.ais-pagination--item__next span {
	display: none;
}

.ais-pagination--item__next a::after {
	content: "\2192";
	display: inline-block;
	font-size: 24px;
	position: relative;
	color: #F73A3A;
	margin-left: -5px;
}

.ais-pagination--item__previous a, .ais-pagination--item__previous a:hover {
	color: #fff !important;
}

.ais-pagination--item__previous span {
	display: none;
}

.ais-pagination--item__previous a::after {

	content: "\2190";
	display: inline-block;
	font-size: 24px;
	position: relative;
	color: #F73A3A;
	margin-left: -5px;
}

@media only screen and (max-width : 960px)  {
	
	#ais-main {
		width: 90%;
	}
	
	.ais-hits .excerpt p {
		padding-left: 0px;
		padding-right: 0px;
	}
	
}


@media only screen and (max-width : 640px)  {
	
	#ais-main {
		width: 100%;
	}
	
	.ais-img-ct {
		float: none;
		max-width: 100%;
	}
	
	.page-numbers .ais-pagination {
		padding-left: 0px;
	}
	
}





/* Agenda 2030 */


.page-template-page-home #memjoin_ct {
	top: 680px;
}

.page-template-page-home #memjoin {
	width: 180px;
	height: 180px;
	font-size: 32px;
	padding-top: 40px;
}

.page-template-page-home #memjoin span {
	font-size: 42px;
}


.page-template-page-agenda2030_p1 h5, .page-template-page-agenda2030_p1 .intro, .page-template-page-agenda2030_p2 h5, .page-template-page-agenda2030_p2 .intro {
	padding-right: 20px;
}


.page-template-page-agenda2030_p1 #memjoin_ct, .page-template-page-agenda2030_p2 #memjoin_ct, .page-template-page-fos2020_p1 #inner-header #memjoin_ct {
	display: none;
}

.page-template-page-fos2020_p1 main > p, .page-template-page-fos2020_p1 main h1:nth-of-type(1), .page-template-page-fos2020_p1 main h5:nth-of-type(1) {
	padding-right: 0;
}

.agenda2030_banner {
	width: 100%;
	height: 38vw;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/wp-content/themes/sct/library/images/sct_agenda2030_zh.jpg);
}

.page-template-page-home .agenda2030_banner {
	min-height: 600px;
	text-align: center;
}


.agenda2030_banner_inner {
	width: 100%;
	max-width: 936px;
	display: inline-block;
	height: 100%;
}


.agenda2030_banner .ag2030_textbox {
	text-align: left;
	position: absolute;
	bottom: 100px;
}

.agenda2030_banner .ag2030_textbox span {
	color: #2fb1cd;
	background-color: #fff;
	padding-left: 10px;
	padding-right: 10px;
	line-height: 140%;
	box-decoration-break: clone;
	text-shadow: none;
	text-align: left;
	font-size: 48px;
	font-style: italic;
	font-weight: bold;	
}

.agenda2030_banner .ag2030_textbox span:hover {
	color: #F73A3A;
}

.ag2030_icons_wrapper {
	display: flex;
  justify-content: space-between;
	padding-top: 100px;
	position: relative;
	z-index: 5;
}


.ag2030_icon_ct {
	display: inline-block;
	position: relative;
}

.ag2030_icon_ct:hover .ag2030_icon_text_ct {
	top: 110px;
	opacity: 1;
}

.ag2030_icon {
	width: 90px;
	height: 90px;
	background-color: #ffffff;
	display: inline-block;
	text-align: center;
	padding: 18px 0;
	-webkit-border-radius: 100px;
border-radius: 100px;
	transition: all 0.5s;
}

#ag2030_icon_geld .ag2030_icon {
	padding: 24px 0;
}

#ag2030_icon_haus .ag2030_icon {
	padding: 24px 0;
}

#ag2030_icon_auto .ag2030_icon {
	padding: 24px 0;
}

#ag2030_icon_hand .ag2030_icon {
	padding: 24px 0;
}


.ag2030_icon svg {
	height: 100%;
	width: auto;
}

.ag2030_icon .cls_x1-3 {
	transition: all 0.5s;
}
.ag2030_icon_ct:hover .ag2030_icon .cls_x1-3 {
	fill: #ffffff;
}

.ag2030_icon .cls_x6-3 {
	transition: all 0.5s;
}
.ag2030_icon_ct:hover .ag2030_icon .cls_x6-3 {
	fill: #ffffff;
}
.ag2030_icon .cls_x6-4 {
	transition: all 0.5s;
}
.ag2030_icon_ct:hover .ag2030_icon .cls_x6-4 {
	stroke: #ffffff;
}


.ag2030_icon .cls_x3-3 {
	transition: all 0.5s;
}
.ag2030_icon_ct:hover .ag2030_icon .cls_x3-3 {
	fill: #ffffff;
}


.ag2030_icon .cls_x2-3 {
	transition: all 0.5s;
}
.ag2030_icon_ct:hover .ag2030_icon .cls_x2-3 {
	fill: #ffffff;
}


.ag2030_icon .cls_x4-3 {
	transition: all 0.5s;
}
.ag2030_icon_ct:hover .ag2030_icon .cls_x4-3 {
	fill: #ffffff;
}


.ag2030_icon .cls_x5-3 {
	transition: all 0.5s;
}
.ag2030_icon_ct:hover .ag2030_icon .cls_x5-3 {
	fill: #ffffff;
}



.ag2030_icon_ct:hover .ag2030_icon {
	background-color: #F73A3A;
}



.ag2030_icon_text_ct {
	width: 200px;	
	height: auto;
	position: absolute;
	left: -55px;
	top: 130px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s;
}



.ag2030_icon_text_arrow {
	width:20px;
	height: 20px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	margin-left: -10px;
	top: -10px;
	z-index: 0;
	-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}

.ag2030_icon_text {
	padding: 0.5em;
	color: #F73A3A;
	line-height: normal;
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	background-color: #fff;
	position: relative;
}



.ag2030_marker_ct {
	display: inline-block;
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
	background-image: url(/wp-content/themes/sct/library/images/sct_marker_shadow.png);
}

.ag2030_marker_ct img {
	width: 100%;
	height: auto;
	transition: all 0.5s;
}

.ag2030_marker_ct:hover img {
	transform: scale(1.1);
}

.ag2030_marker_text {
	color: #F73A3A;
	font-size: 0.95vw;
	letter-spacing: 0.02em;
	padding: 0.5vw 0.8vw;
	background-color: #ffffff;
	font-weight: bold;
	position: absolute;
	text-align: left;
	line-height: normal;
	margin-left: 100%;
	opacity: 0;
	/*margin-top: -0.5vw;*/
	pointer-events: none;
	transition: all 0.5s;
}

.ag2030_marker_ct:hover .ag2030_marker_text {
	opacity: 1;
	margin-left: 50%;
}


#ag2030_marker_lampe {
	width: 4.2vw;
	top: 6vw;
	left: 21.8vw;
}

#ag2030_marker_hand {
	width: 5.8vw;
	top: 17.2vw;
	left: 24.4vw;
}

#ag2030_marker_preis {
	width: 7.2vw;
	top: 21vw;
	left: 37vw;
}

#ag2030_marker_haus {
	width: 8.2vw;
	top: 21vw;
	left: 62vw;
}

#ag2030_marker_auto {
	width: 5vw;
	top: 8.4vw;
	left: 43.4vw;
}

#ag2030_marker_geld {
	width: 3.5vw;
	top: 3.5vw;
	left: 50vw;
}





.ag2030_colbox_wrapper {
	padding-top: 2em;
	display: flex;
	flex-wrap: wrap;
	font-size: 18px;
	justify-content: space-between;
}

.ag2030_colbox_ct {
	width: 26%;
	padding-bottom: 3em;
}

.ag2030_colbox_titel {
	font-weight: bold;
	color: #F73A3A;
	display: block;
}

.ag2030_colbox_ico {
	height: 80px;
	padding-top: 15px;
	padding-bottom: 10px;
}

#ag2030_colbox_preis .ag2030_colbox_ico {
	padding-top: 0;
}

.ag2030_colbox_ico img {
	height: 100%;
	width: auto;
}



@media only screen and (max-width : 1040px)  {
	
	.agenda2030_banner_inner {
		width: 80%;
	}
	
	.ag2030_colbox_wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.ag2030_colbox_ct {
		width: 30%;
	}
	
	
}

@media only screen and (max-width : 970px)  {
	
	
	.page-template-page-home #memjoin_ct {
	top: 380px;
		display: inherit !important;
}

.page-template-page-home #memjoin {
	width: 140px;
	height: 140px;
	font-size: 26px;
	padding-top: 30px;
}

.page-template-page-home #memjoin span {
	font-size: 36px;
}
	
	
	
	
	.ag2030_icons_wrapper {
		padding-top: 40px;
	}
	
	.page-template-page-home .agenda2030_banner {
		min-height: 400px;
		margin-top: -20px;
	}
	
	.agenda2030_banner_cwrapper {
		position: relative;
		height: 75vw;
		margin-top: -30px;
		overflow-x: hidden;
	}
	
	.page-template-page-agenda2030_p2 .agenda2030_banner {
		top: 18vw;
		-moz-transform: scale(1.9);
		-webkit-transform: scale(1.9);
		-o-transform: scale(1.9);
		-ms-transform: scale(1.9);
		transform: scale(1.9);
		left: 6vw;
	}
	
	.page-template-page-agenda2030_p2 .ag2030_marker_text {
		font-size: 1.3vw;
		margin-top: -1.5vw;
	}
	
	#ag2030_marker_haus .ag2030_marker_text {
		left: -300%;
		width: 200%;
	}
	
	#ag2030_marker_haus:hover .ag2030_marker_text {
		left: -250%;
		width: 200%;
		margin-left: 100%;
	}
	
	.agenda2030_banner .ag2030_textbox {
		bottom: 40px;
	}
	
	
	
	.agenda2030_banner .ag2030_textbox span {
		font-size: 32px;
	}
	
	.page-template-page-agenda2030_p1 h5, .page-template-page-agenda2030_p2 h5 {
		font-size: 32px;
		line-height: 36px;
	}
	
	.ag2030_colbox_wrapper p {
		padding-left: 0;
		padding-right: 0;
	}
	
	.page-template-page-fos2020_p1 main > p, .page-template-page-fos2020_p1 main h1:nth-of-type(1), .page-template-page-fos2020_p1 main h5:nth-of-type(1) {
	padding-right: 20px;
}
	
	.page-template-page-fos2020_p1 #content {
		padding-top: 110px;
	}
	
	
}

@media only screen and (max-width : 840px)  {
	
		.page-template-page-home #memjoin_ct {
	top: 280px;
		display: inherit !important;
}

.page-template-page-home #memjoin {
	width: 120px;
	height: 120px;
	font-size: 21px;
	padding-top: 20px;
}

.page-template-page-home #memjoin span {
	font-size: 32px;
}
	
	.agenda2030_banner .ag2030_textbox {
		padding-right: 130px;
	}	
	
	.page-template-page-home .agenda2030_banner {
		min-height: 300px;
	}
	
	.ag2030_icon {
		width: 60px;
		height: 60px;
	}
	#ag2030_icon_geld .ag2030_icon {
		padding: 15px 0px;
	}
	#ag2030_icon_lampe .ag2030_icon {
		padding: 10px 0px;
	}
	#ag2030_icon_haus .ag2030_icon {
		padding: 15px 0px;
	}
	#ag2030_icon_auto .ag2030_icon {
		padding: 15px 0px;
	}
	#ag2030_icon_hand .ag2030_icon {
		padding: 14px 0px;
	}
	#ag2030_icon_preis .ag2030_icon {
		padding: 12px 0px;
	}
	
	.ag2030_icon_text_ct {
		top: 90px;
		left: -35px;
		width: 130px;
	}
	
	.ag2030_icon_ct:hover .ag2030_icon_text_ct {
		top: 75px;
	}
	
	.ag2030_icon_text {
		font-size: 12px;
	}
	
	.ag2030_colbox_ct {
		width: 46%;
	}

}


@media only screen and (max-width : 540px)  {
	
			.page-template-page-home #memjoin_ct {
	top: 300px;
		display: inherit !important;
}

.page-template-page-home #memjoin {
	width: 100px;
	height: 100px;
	font-size: 18px;
	padding-top: 15px;
}

.page-template-page-home #memjoin span {
	font-size: 28px;
}
	.agenda2030_banner .ag2030_textbox {
		padding-right: 110px;
	}
	
	
	.ag2030_icon {
		width: 40px;
		height: 40px;
	}
	#ag2030_icon_geld .ag2030_icon {
		padding: 9px 0px;
	}
	#ag2030_icon_lampe .ag2030_icon {
		padding: 7px 0px;
	}
	#ag2030_icon_haus .ag2030_icon {
		padding: 10px 0px;
	}
	#ag2030_icon_auto .ag2030_icon {
		padding: 10px 0px;
	}
	#ag2030_icon_hand .ag2030_icon {
		padding: 9px 0px;
	}
	#ag2030_icon_preis .ag2030_icon {
		padding: 7px 0px;
	}
	
	.ag2030_icon_text_ct {
		top: 65px;
		left: -45px;
	}
	
	.ag2030_icon_ct:hover .ag2030_icon_text_ct {
		top: 55px;
	}
	
	.agenda2030_banner .ag2030_textbox span {
		font-size: 18px;
	}
	
	.agenda2030_banner_inner {
		width: 95%;
	}
	
	#ag2030_icon_geld .ag2030_icon_text_ct {
		left: 0;
	}
	
	#ag2030_icon_geld .ag2030_icon_text_arrow {
		left: 15%;
	}
	
	#ag2030_icon_preis .ag2030_icon_text_ct {
		left: auto;
		right: 0;
	}
	
	#ag2030_icon_preis .ag2030_icon_text_arrow {
		left: 85%;
	}
	
	.ag2030_colbox_ct {
		width: 100%;
	}
	
	.ag2030_colbox_wrapper {
		font-size: 16px;
	}
	
	.ag2030_colbox_ico {
		height: 65px;
	}
	
}



/* FOS 2020 */

.page-id-16700 #inner-header #memjoin_ct {
	display: none;
}

.fos2020_banner_ct {
	background-image: url(/wp-content/themes/sct/library/images/banner1_fos2020.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 36vw;
	position: relative;
}


.fos2020_banner_inner {
	position: absolute;
	width: 100%;
	max-width: 936px;	
	height: 100%;
	top: 0;
	left: 50%;
	margin-left: -468px;
}

.fos2020_banner_inner #memjoin_ct {
	top: 16vw;
	
}

.fos2020_banner_inner #memjoin {
	width: 10vw;
	height: 10vw;
	padding-top: 4vw;
	font-size: 1.7vw;	
}

.fr .fos2020_banner_inner #memjoin {
	font-size: 1.3vw;	
}


.logo_fos2020 {
	position: absolute;
	top: 2.5vw;
	left: -0.2vw;
	height: 4vw;
	max-height: 60px;
	width: auto;
}

.page-id-16700 main > p, .page-id-16700 main h5:nth-of-type(1) {
	padding-right: 0;
}

.fos2020_block_mission {
	padding-top: 4em;
	position: relative;
	text-align: center;
}

.fos2020_mission_wrapper {
	padding-top: 2em;
	padding-bottom: 2em;
	display: flex;
  justify-content: center;
	flex-wrap: wrap;
	align-content: center;
}

.fos2020_mission_item {
	width: 40%;
	margin: 2% 4% 4% 4%;
	display: inline-block;
	position: relative;
	font-size: 17px;
}

.fos2020_mission_image {
	position: relative;
	display: inline-block;
	width: 80%;
	padding-top: 80%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-border-radius: 300px;
border-radius: 300px;
}

.fos2020_mission_title {
	padding-top: 0.8em;
}


.fos2020_block_stimme {
	padding-top: 5em;
	text-align: center;
}



.fos2020_stimme_wrapper {
	padding-top: 2em;
}

.fos2020_stimme_item {
	padding: 15px;
	font-size: 17px;
}

.fos2020_stimme_image {
	position: relative;
	width: 100%;
	padding-top: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-border-radius: 300px;
border-radius: 300px;
}

.fos2020_stimme_title {
	padding-top: 0.8em;
}


.fos2020_block_stimme {
	padding-top: 5em;
	text-align: center;
}

.fos_partner_logo {
	position: absolute;
	top: 2.5vw;
	height: 4vw;
	width: auto;
	right: 0;
}

.fos_partner_logo img {
	position: relative;
	width: auto;
	height: 100%;
}

.fos_form_wrapper .wFormHeader, .fos_form_wrapper .wFormTitle {
	display: none;
}

.fos_form_wrapper .wFormContainer {
	margin-left: 0px;
}

.fos_form_wrapper .wFormContainer .wForm form {
	padding-left: 0px;
}

.page-id-16807 #memjoin_ct, .page-id-16829 #memjoin_ct, .page-id-16820 #memjoin_ct, .page-id-16981 #memjoin_ct, .page-id-16984 #memjoin_ct, .page-id-16906 #memjoin_ct, .page-id-16910 #memjoin_ct, .page-id-16908 #memjoin_ct {
	display: none;
}

.fos_step1 .fos_text1, .fos_step2 .fos_text2, .fos_step2 .fos_text1 {
	display: none;
}

.fos_partner_logo_lp {
	height: 80px;
	margin-right: 50px;
	margin-left: 20px;
	width: auto;
}

.page-id-17110 main a {
	border-bottom: none !important;
}

.fos2020_banner_hgrad {
	position: absolute;
	width: 100%;
	height: 20vw;
	top: 0;
}

.fos2020_banner_hgrad.weiss1 {
	background: rgba(255,255,255,0.2);
background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 100%);
background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 100%);
background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.fos2020_banner_hgrad.weiss2 {
	background: rgba(255,255,255,0.2);
background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 100%);
background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 100%);
background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.fos2020_banner_hgrad.schwarz1 {
	background: rgba(255,255,255,0.2);
background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.fos2020_banner_hgrad.schwarz2 {
	background: rgba(255,255,255,0.2);
background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}


@media only screen and (max-width : 1040px)  {

	.fos2020_block_stimme {
		padding-left: 40px;
		padding-right: 40px;
	}
	
	.fos2020_mission_item {
		width: 40%;
	}
	
	.logo_fos2020 {
		left: 20px;
	}
	
	.fos2020_banner_inner #memjoin_ct {
		right: 20px;
		display: inherit !important;
	}
	
	.page-id-16700 #content {
		padding-top: 110px;
	}
	
	.fos2020_banner_inner {
		max-width: 100%;
		left: auto;
		margin-left: auto;
	}
	
	.fos_partner_logo {
		right: 20px;
	}
	

}

@media only screen and (max-width : 760px)  {
	
	.fos2020_mission_item {
		width: 80%;
		margin-bottom: 40px;
	}
	
	.fos2020_banner_ct {
		padding-top: 300px;
		background-position: center top;
	}
	
	.logo_fos2020 {
		height: 32px;
		top: 4vw;
	}
	
	
	
	.fos2020_banner_inner #memjoin {
		width: 20vw;
		height: 20vw;
		padding-top: 8vw;
		font-size: 3.2vw;
	}
	
	.fr .fos2020_banner_inner #memjoin {
		font-size: 2.6vw;	
	}
	
	.fos_partner_logo {
		height: 40px;
		top: 4vw;
	}
	
}

@media only screen and (max-width : 600px)  {
	
.fos2020_banner_inner #memjoin_ct {
		top: 40vw;
	}
	
	.fos_partner_logo {
		top: 66px;
	}
	
	
}




/* slick css */

@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('/wp-content/themes/sct/fonts/slick.eot');
    src: url('/wp-content/themes/sct/fonts/slick.eot?#iefix') format('embedded-opentype'), url('/wp-content/themes/sct/fonts/slick.woff') format('woff'), url('/wp-content/themes/sct/fonts/slick.ttf') format('truetype'), url('/wp-content/themes/sct/fonts/slick.svg#slick') format('svg');
}

.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .4;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 30px;
    line-height: 1;

    opacity: 0.4;
    color: #F73A3A;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 12px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: 0.4;
    color: #F73A3A;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
    color: #F73A3A;
}


.pa_socmed {
	padding-top: 10px;
}

.pa_socmed a {
	border-bottom: none;
	text-decoration: none;
	color: #fff !important;
	display: inline-block;
}

.pa_socmed a:hover {
	border-bottom: none;
	color: #fff !important;
}

.fos2020_stimme_item .wptx0 {
	display: none;
}

.pa_sm_wrp {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background-color: #000;
	-webkit-border-radius: 50px;
border-radius: 50px;
}

.pa_sm_wrp:hover {
	background-color: #F73A3A;
}

.pa_sm_wrp::before {
	content: "\f099";
	font-family: "Font Awesome 5 Brands";
	position: relative;
}

.pa_sm_wrp.ico_fb::before {
	content: "\f39e";
	font-family: "Font Awesome 5 Brands";
	position: relative;
}


.pa_style2_wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.pa_style2_wrapper .fos2020_stimme_item {
	width: 32%;
	margin-bottom: 2%;
	text-align: center;
}

.pa_style3_wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.pa_style3_wrapper .fos2020_stimme_item {
	width: 23%;
	margin-bottom: 2.66%;
	text-align: center;
}

.pa_style3_wrapper h4 {
	font-size: 18px;
}


.pa_style3_wrapper .fos2020_stimme_item {
	font-size: 15px;
}

.pa_style3_wrapper .icon_www {
	background-image: url(/wp-content/themes/sct/library/images/icon_web.svg);
	background-size: 21px auto;
	background-position: center center;
	background-repeat: no-repeat;
}






/* mitgliederbereich */


.msf_box {
	position: relative;
	background-color: #fff;
	/*border: 1px solid #ccc;*/
	padding: 0.5em 1em;
}

.msf_box.active {
	background-color: #f4f4f4;
}

.msf_box.curselitem {
	background-color: rgb(247,58,58);
}

.msf_titel {
	cursor: pointer;
}

.msf_titel::before {
	content: '+ ';
}

.msf_box.active .msf_titel::before {
	content: '- ';
}


.msf_box section {
	width: auto;
	max-width: 500px;
	padding: 1em;
	padding-right: 2em;
	top: 100%;
	left: 0;
	background-color: #f4f4f4;
	position: absolute;
	display: none;	
	z-index: 50;
	max-height: 40vh;
	overflow-y: auto;
}

.msf_box.active section {
	display: inline-block;
}

.msf_box .facet-item {
	white-space: nowrap;
}


.ms_filterbox #ais-facets {
	width: 100%;
}

.mt_firmenmitglied .txtrp::before {
	content: 'Firmenmitglieder';
}
.mt_verbandsmitglied .txtrp::before {
	content: 'Verbandsmitglieder';
}
.mt_partner .txtrp::before {
	content: 'Partner';
}

.ms_search_wrapper {
	width: 100%;
}

#facet-post-types2  {
	display: none;
}



.mtgtyp_select a {
	margin-right: 1em;
	border-bottom: 1px solid;
	font-size: 1.1em;
	display: inline-block;
	cursor: pointer !important;
}

.mtgtyp_select a.active {
	color: #F73A3A !important;
	border-bottom: 1px solid #F73A3A !important;
}



#facet-post-types2 .ais-refinement-list--list .ais-refinement-list--item input {
	display: none;
}

.mastat_false {
	display: none;
}


.mff_box_ct {
	background-color: rgba(198,237,255,0.55);
	padding: 1.2em;
	margin-top: 0.8em;
	margin-bottom: 2em;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.mff_upper {
	width: 100%;
	padding-bottom: 0.5em;
}

.mff_left, .mff_right {
	width: 48%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.mff_box_ct #ais-main {
	width: 100%;
	padding: 0.5em 0;
}

.mff_box_ct #algolia-search-box {
	margin-bottom: 0;
}

#msf_box2 {
	margin: 1em 0;
}

.msf_reset {
	text-align: right;
	font-size: 0.9em;
}

#facet-post-types4 {
	margin: 0.6em 0;
}

.mff_box_ct #algolia-search-box input {
	background-color: #e8e8e8;
	font-size: 20px;
}


.mff_box_ct #algolia-search-box input:focus {
	background-color: #e8e8e8;
} 

.mff_box_ct #algolia-search-box input::placeholder {
	color: #fff !important;
	opacity: 1;
}

.ms_search_wrapper .ais-hits--item {
	display: inline-block;
	border: none !important;
	padding-bottom: 0;
	margin-bottom: 0;
}

.ftx[data-ftx="Abfallentsorgung / Recycling"]::before {
	content: 'Gestion des déchets / recyclage';
}
.ftx[data-ftx="Baugewerbe / Immobilien"]::before {
	content: 'Construction / immobilier';
}
.ftx[data-ftx="Beratung / Consulting"]::before {
	content: 'Conseil / consultance';
}
.ftx[data-ftx="Bildung / Wissenschaft"]::before {
	content: 'Éducation / science';
}
.ftx[data-ftx="Chemie / Pharma / Biotechnologie"]::before {
	content: 'Chimie / pharmacie / biotechnologie';
}
.ftx[data-ftx="Detail- und Grosshandel"]::before {
	content: 'Commerce de détail et de gros';
}
.ftx[data-ftx="EDV / IT / Telekommunikation"]::before {
	content: 'Informatique / télécommunications';
}
.ftx[data-ftx="Energiewirtschaft"]::before {
	content: 'Énergie';
}
.ftx[data-ftx="Finanz- und Versicherungsdienstleister"]::before {
	content: 'Finances et assurances';
}
.ftx[data-ftx="Gastronomie / Hotellerie / Tourismus"]::before {
	content: 'Restauration / hôtellerie / tourisme';
}
.ftx[data-ftx="Gesundheitswesen / Soziales"]::before {
	content: 'Santé / social';
}
.ftx[data-ftx="Ingenieurwissenschaft"]::before {
	content: 'Sciences de l’ingénieur';
}
.ftx[data-ftx="Kommunikation / Marketing / Werbung"]::before {
	content: 'Communication / marketing / publicité';
}
.ftx[data-ftx="Kunst / Kultur / Unterhaltung"]::before {
	content: 'Art / culture / spectacles';
}
.ftx[data-ftx="Maschinen- / Anlagebau"]::before {
	content: 'Construction de machines / d’installations';
}
.ftx[data-ftx="Medien"]::before {
	content: 'Médias';
}
.ftx[data-ftx="Medien / Marketing / Werbung"]::before {
	content: 'Médias / marketing / publicité';
}
.ftx[data-ftx="Mobilität / Transport / Logistik"]::before {
	content: 'Mobilité / transports / logistique';
}
.ftx[data-ftx="NGO / Nonprofit"]::before {
	content: 'ONG / but non lucratif';
}

.ftx[data-ftx="Produktion / Industrie"]::before {
	content: 'Production / industrie';
}
.ftx[data-ftx="Tourismus / Hotel / Gastronomie"]::before {
	content: 'Tourisme / hôtel / restauration';
}



.ftx[data-ftx="Aargau"]::before {
	content: 'Argovie';
}
.ftx[data-ftx="Appenzell Ausserrhoden"]::before {
	content: 'Appenzell Rhodes-Extérieures';
}
.ftx[data-ftx="Basel-Landschaft"]::before {
	content: 'Bâle-Campagne';
}
.ftx[data-ftx="Basel-Stadt"]::before {
	content: 'Bâle-Ville';
}
.ftx[data-ftx="Bern"]::before {
	content: 'Berne';
}
.ftx[data-ftx="Freiburg"]::before {
	content: 'Fribourg';
}
.ftx[data-ftx="Genf"]::before {
	content: 'Genève';
}
.ftx[data-ftx="Graubünden"]::before {
	content: 'Grisons';
}
.ftx[data-ftx="Keiner"]::before {
	content: 'rien';
}
.ftx[data-ftx="Luzern"]::before {
	content: 'Lucerne';
}
.ftx[data-ftx="Schaffhausen"]::before {
	content: 'Schaffhouse';
}
.ftx[data-ftx="Schwyz"]::before {
	content: 'Schwyz';
}
.ftx[data-ftx="Solothurn"]::before {
	content: 'Soleure';
}
.ftx[data-ftx="St. Gallen"]::before {
	content: 'Saint-Gall';
}
.ftx[data-ftx="Thurgau"]::before {
	content: 'Thurgovie';
}
.ftx[data-ftx="Uri"]::before {
	content: 'Uri';
}
.ftx[data-ftx="Waadt"]::before {
	content: 'Vaud';
}
.ftx[data-ftx="Wallis"]::before {
	content: 'Valais';
}
.ftx[data-ftx="Zug"]::before {
	content: 'Zoug';
}
.ftx[data-ftx="Zürich"]::before {
	content: 'Zurich';
}



/* Media Queries */

@media only screen and (max-width : 970px)  {
	
	#inner-header, #footer_bc_ct, #footer_kontakt_ct, #footer_links_ct, .newsletter_inner, h1, h5, h4, p, .more_posts_ct, .newest_posts_ct, .special_content_container, .prt_teambox, #mc_embed_signup_scroll, .page-template main > p, .page-template-default main > p, .home_intro h3, .page-template-default main > h3, .sct_hero_wrapper, .sct_kacheln_wrapper > div, main > .wp-block-buttons, .superhero_first h3, .text_wrapper > .wp-block-buttons, .text_wrapper > h3 {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	h3 p, .nl23_cols_top_bottom h3 {
		padding-left: 0;
		padding-right: 0;
	}
	
	.main_text p {
		padding-left: 0;
		padding-right: 0;
	}
	
	
	.prt_teambox p {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.header.sticky {
		position: absolute;
		margin-top: 0px;
	}
	
	.home_intro p:nth-of-type(1), .intro p:nth-of-type(1) {
		padding-right: 20px;
	}
	
	.home_link {
		margin-left: 20px;
	}
	
	.def_pad_right {
		padding-right: 0px;
	}
	
	p .home_link {
		margin-left: 0px;
	}
	
	p#logo {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	#meta_menu_ct {
		right: 20px;
	}
	
	#memjoin_ct {
		right: 20px;
	}
	
	.nav li, .nav li a {
		display: inline-block;
	}
	
	.block_newsletter {
		margin-left: 0px;
		margin-right: 0px;
	}
	
	.newsletter_inner h4 {
		padding-left: 0px;
	}
	
	.newest_posts {
		width: 48%;
		margin-left: 4%;
	}
	
	.newest_posts.ind1, .newest_posts.ind3 {
		margin-left: 0px;
	}
	
	.themen_posts {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.themen_posts .cmpi {
		width: 40%;
		height: 250px;
		margin-right: 3%;
	}
	
	.cmctt {
		width: 57%;
		float: left;
	}
	
	.home main h1, .home main h5, .page-template-page-agenda2030_p1 h1, .page-template-page-agenda2030_p2 h1 {
		font-size: 42px;
		line-height: 46px;
		padding-right: 20px;
	}
	
	.home_intro, .intro {
		font-size: 21px;
		line-height: 32px;
	}
	
	.highlight_posts h3, .newest_posts h3 {
		font-size: 28px;
		line-height: 32px;
	}
	
	.highlightbox_wrapper, .newest_posts {
		font-size: 18px;
		line-height: 24px;
	}
	
	h4 {
		font-size: 21px;
	}
	
	.home_block, .home_link {
		font-size: 19px;
		line-height: 24px;
	}
	
	.themen_banner_inner a {
		font-size: 18px;
		line-height: 22px;
	}
	
	.themen_banner .tb_spacer {
		display: none;
	}
	
	
	
	.agenda_content {
		width: 580px;
	}
	
	
	.agendaeintrag-template-default p, .agendaeintrag-template-default h1, .agendaeintrag-template-default h5 {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.agendaeintrag-template-default #main {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	
	.foldbox_title {
		padding-left: 20px !important;
	}
	
	.foldbox_content {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	
	#content {
		padding-top: 130px;
	}
	
	.nav li a {
		margin-right: 25px;
		margin-bottom: 10px;
		font-size: 18px;
	}
	
	#meta_menu_ct, .menu-item-146, #memjoin_ct, #menu-item-8 {
		display: none !important;
	}
	
	#logo {
		padding-top: 10px;
	}
	
	#logo_sct {
		/* width: 140px;*/ 
		height: 79px;
	}
	
	#mob_menu_icon {
		display: inline-block;
		width: 30px;
		height: 30px;
		position: absolute;
		right: 20px;
		top: 55px;
	}
	

	
	#mob_menu_content {	
		position: absolute;
		background-color: #fff;
		width: 100%;
		left: 0px;
		top: 115px;
		border-top: 2px solid #000;
		border-bottom: 2px solid #000;
		z-index: 10;
	}
	
	#mobmenu_mainnav li {
		float: left;
		display: inline-block;
		width: 100%;
		padding: 8px 20px;
		border-top: 1px solid #000;
	}
	
	#mobmenu_mainnav li a {
		margin-bottom: 0px;
		margin-right: 0px;
		font-weight: bold;
		font-size: 20px;
	}
	
	
	#mobmenu_themen {
		margin: 0px;
		padding: 10px 0px;
	}
	
	#mobmenu_themen li {
		padding: 4px 20px;
	}
	
	#mobmenu_themen li a {
		text-decoration: none;
		color: #000;
		font-weight: normal;
		font-size: 16px;
	}
	
	#mobmenu_themen li#first_item {
		padding-top: 8px;
	}
	
	#mobmenu_themen li#first_item a {
		font-weight: bold;
		font-size: 20px;
	}
	
	#mobmenu_meta {
		margin: 0px;
	}
	
	#mobmenu_meta li {
		padding: 4px 20px;
		border-top: 1px solid #000;
	}
	
	#mobmenu_meta li a {
		text-decoration: none;
		color: #000;
		font-weight: normal;
		font-size: 16px;
	}
	
	#mobmenu_socmeta {
		border-top: 1px solid #000;
	}
	
	#mobmenu_socmeta a {
		color: #000;
	}
	
	#mobmenu_socmeta_search {
		float: left;
		padding-left: 20px;
		padding-right: 20px;
		font-size: 21px;
		padding-top: 5px;
		padding-bottom: 5px;
		display: inline-block;
		height: 40px;
	}
	
	#mobmenu_socmeta_lang {
		float: left;
		font-size: 21px;
		border-left: 1px solid #000;
		border-right: 1px solid #000;
		display: inline-block;
		height: 40px;
		padding: 5px 10px;
	}
	
	#mobmenu_socmeta_lang .wpml-ls-item-de a {
		border-right: none;
	}
	
	#mobmenu_socmeta_lang .wpml-ls-current-language a {
		font-weight: bold;
		color: #F73A3A;
	}
	
	#mobmenu_socmeta_social {
		float: left;
		font-size: 21px;
		display: inline-block;
		height: 40px;
		padding: 5px 10px;
	}
	
	#mobmenu_socmeta_social i {
		margin: 5px 10px;
	}
	
	#mitglieder_ct {
		padding-left: 20px;
	}
	
	.box_mitglied {
		margin-right: 20px;
		margin-bottom: 20px;
		width: 210px;
		height: 120px;
	}
	
	.more_posts_ct .more_posts {
		width: 32%;
		margin-left: 2%;
	}
	
	.home_agenda_ct .more_posts_ct .more_posts {
		width: 100%;
		margin-left: 0px;
	}
	
	.agenda_content {
		width: 580px;
	}
	
	.home_agenda_ct .more_posts {
		margin-bottom: 20px;
	}
	
	.highlight_posts .cmpi {
		width: 20%;
		margin-right: 3%;
	}
	
	.highlight_posts .hp_cwrapper {
		width: 77%;
	}
	
	.more_posts_ct .cmpi {
		height: 170px;
	}
	
	main h1:nth-of-type(1), main h5:nth-of-type(1) {
		padding-right: 20px;
	}
	
	.single-post .hentry header, .single-news .hentry header, section .main_image, section .main_text {
		padding-left: 40px;
		padding-right: 40px;
	}
	

	
	.post-template-default h1, .post-template-default h5 {
		padding-left: 0px;
	}
	
	.foldbox_content p {
		padding: 0px;
	}
	
	main {
		font-size: 18px;
	}
	
	.prt_teambox .prt_img {
		margin-left: 0px;
		margin-right: 20px;
	}
}


@media only screen and (max-width : 840px)  {
	
	.pa_style3_wrapper .fos2020_stimme_item {
		width: 31%;
		margin-bottom: 3.5%;
	}
	
}


@media only screen and (max-width : 680px)  {
	
	main ul {
		padding-left: 1em;
	}

	.home main {
		padding-top: 20px;
	}
	
	.home main h1, h1, .home main h5, h5 {
		font-size: 32px;
		line-height: 36px;
	}
	
	.home_intro, .intro {
		font-size: 18px;
		line-height: 28px;
	}
	
	.highlight_posts h3, .newest_posts h3, .more_posts h3 {
		font-size: 18px;
		line-height: 21px;
	}
	
	.themen_posts h3 {
		font-size: 22px;
		line-height: 25px;
	}
	
	 .article-header h3, .page-template-default h3 {
		 font-size: 21px;
		line-height: 26px;
	}
	
	.highlightbox_wrapper, .newest_posts, .more_posts {
		font-size: 14px;
		line-height: 18px;
	}
	
	.cmctt {
		font-size: 16px;
		line-height: 21px;
	}
	
	h4 {
		font-size: 18px;
	}
	
	.home_block, .home_link {
		font-size: 17px;
		line-height: 21px;
		padding-bottom: 3px;
	}
	
	.agenda_content {
		width: 220px;
	}
	
	.agenda_datum {
		font-size: 24px;
		line-height: 22px;
		width: 55px;
	}
	
	
	.newest_posts_ct .newest_posts {
		width: 100%;
		margin-left: 0px;
		margin-bottom: 30px;
	}
	
	.newest_posts .cmpi {
		height: 220px;
	}
	
	.newest_posts_meta, .highlight_posts_meta, .themen_posts_meta, .more_posts_meta {
		font-size: 12px;
		margin-top: 10px;
	}
	
	.highlightbox_wrapper .highlight_posts {
		padding-bottom: 20px;
	}
	
	.highlightbox_wrapper .highlight_posts .cmpi {
		width: 27%;
		margin-right: 3%;
	}
	
	.highlight_posts .hp_cwrapper {
		width: 70%;
	}
	
	
	.nav li a {
		margin-right: 0px;
		font-size: 14px;
	}
	
	.themen_button {
		height: 175px;
	}
	
	.themen_button span {
		bottom: 15px;
		left: 15px;
		font-size: 24px;
	}
	
	.themen_banner_ct {
		height: auto;
		margin-bottom: 20px;
	}
	
	.themen_banner {
		position: relative;
	}
	
	.themen_posts {
		margin-top: 10px;
		margin-bottom: 30px;
	}
	
	.themen_posts .cmpi {
		width: 100%;
		height: 180px;
		margin-right: 0px;
		margin-bottom: 10px;
	}
	
	.cmctt {
		width: 100%;
	}
	
	.single-post .hentry header, .single-news .hentry header, section .main_image, section .main_text {
		padding-left: 20px;
		padding-right: 20px;
	}
		
	section .main_text { 
		padding-left: 20px;
	}
	
	section {
		font-size: 16px;
	}
	
	section .abstract_ct {
		width: 160px;
		margin-left: -20px;
	}
	
	.abstract_ct a.ctabtn {
		padding: 8px 10px;
	}
	
	.abstract_ct > div {
		padding-left: 20px;
	}
	
	.more_posts_ct .more_posts {
		width: 100%;
		margin-bottom: 30px;
	}
	
	.more_posts_ct .cmpi {
		width: 27%;
		margin-right: 3%;
		height: 100px;
		vertical-align: top;
	}
	
	.more_posts_ct .mp_wrapper {
		width: 67%;
		display: inline-block;
	}
	
	.more_posts_ct .more_posts {
		margin-left: 0px;
	}
	
	.page-template main > p:nth-of-type(1), .page-template-default main > p:nth-of-type(1) {
		padding-right: 20px;
	}
	
	.newsletter_inner input[type="text"] {
		max-width: 200px;
	}
	
	.newsletter_inner input[type="submit"] {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	#footer_kontakt_ct, #footer_links_ct {
		display: none;
	}
	
	#mob_ext_footer {
		display: inherit;
	}
	
	#mob_ext_footer h4 {
		padding-left: 0px;
	}
	
	#mob_ext_footer a {
		text-decoration: none;
		color: #000;
	}
	
	#mob_ext_footer_social i {
		font-size: 21px;
		color: #F73A3A;
		margin-right: 20px;
		margin-top: 5px;
	}
	
	#mob_ext_footer_themen {
		padding-bottom: 40px;
	}
	
	#mob_ext_footer_themen a {
		border-bottom: 1px solid #000;
		margin-top: 10px;
		margin-bottom: 5px;
		display: inline-block;
	}
	
	#mob_ext_menus {
		display: inherit;
	}
	
	#mob_ext_menus ul {
		margin: 0px;
	}
	
	#mob_ext_menus li {
		padding-left: 20px;
		text-align: left;
		border-top: 1px solid #000;
		margin-bottom: 0px;
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: 15px;
	}
	
	#footer_ext_lang {
		float: right;
	}
	
	#footer_ext_lang .wpml-ls-current-language a {
		font-weight: bold;
		color: #F73A3A;
	}
	
	#mob_ext_menus #footer_ext_lang  li {
		padding-left: 0px;
		padding-right: 20px;
		border-top: none;
		padding-top: 0px;
		padding-bottom: 0px;
	}
	
	#footer_ext_lang .wpml-ls-item-de a {
		border-right: none;
	}
	
	#menu-item-93 {
		display: none;
	}
	
	#footer_bc {
		font-size: 15px;
	}
	
	.post-template-default p {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.home_link {
		margin-right: 0px !important;
	}
	
	#nl_flyin.newsletter_inner input[type="text"] {
		max-width: 170px;
	}
	
	#nl_flyin.actv {
		left: 5%;
	}
	
	.themen_banner h4 {
		padding-left: 0px;
	}
	
	
	.box_mitglied_titel {
		font-size: 15px;
	}
	
	.box_mitglied_typ {
		font-size: 12px;
	}
	
	.prt_teambox .prt_img {
		width: 100%;
	}
	
	.page-template-page-news-cleantech .news_summary, .page-template-page-news-mitglieder .news_summary {
		font-size: 15px;
		line-height: 19px;
		display: inline-block;
	}
	
	section .main_text {
		padding-top: 20px;
	}
	
	section .abstract_ct {
		width: 100%;
		margin-left: auto;
	}
	
	
	.abstract_ct > div {
		padding-right: 20px;
	}
	
	.abstract_ct .abstract_download {
		text-align: center;
	}
	
	.abstract_ct .abstract_download img, .abstract_ct .abstract_download .ctabtn {
		max-width: 150px;
	}
	
	.pa_style3_wrapper .fos2020_stimme_item {
		width: 47%;
		margin-bottom: 3%;
	}
	
	.ms_search_wrapper .ais-hits--item {
		width: 100%;
		padding: 0 1em;
	}
	
	.mtgtyp_select {
		padding: 0 1em;
	}
	
	.mtgtyp_select a {
		margin-bottom: 1em;
	}
	
	.mff_box_ct {
		flex-direction: column;	
		padding: 1em;
	}
	
	.mff_left, .mff_right {
		width: 100%;
	}
	
	.mff_right {
		margin-top: 1em;
	}
	
	.msf_box, .msf_reset {
		margin: 1em 0 0 0 !important;
	}
	
	.mff_box_ct {
		font-size: 16px;
	}
	
	.msf_box section {
		max-width: 100%;
		max-height: 30vh;
	}
	
	.mff_box_ct .ais-refinement-list--list {
		font-size: 15px;
	}
	
	.msf_box .facet-item {
		white-space: normal;
	}
	
	
	
}



@media only screen and (max-width : 440px)  {

	.box_mitglied {
		width: 100%;
		height: 150px;
		margin-bottom: 10px;
		margin-top: 10px;
	}
	
	#mitglieder_ct {
		padding-right: 20px;
	}
	
	.box_mitglied_mobinfo {
		display: block;
		margin-bottom: 20px;
	}
	
	.box_mitglied_mobinfo span {
		margin: 0px;
		display: inherit;
	}
	
	.box_mitglied_overlay {
		display: none;
	}
	
	.box_mitglied_inline .box_mitglied_typ {
		display: none;
	}
	
	.pa_style3_wrapper {
		justify-content: center;
	}
	
	.pa_style3_wrapper .fos2020_stimme_item {
		width: 100%;
		max-width: 260px;
		margin-bottom: 3%;
	}
	
	
}




/* LAYOUT ANPASSUNGEN 2023 */

.nl23_cols_top_bottom .wp-block-column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.newest_posts_wrapper_2023 {
	padding-bottom: 4em;
}

.newest_posts_wrapper_2023 .newest_posts_ct {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 4em 30px;
	padding-bottom: 3em;
}

.newest_posts_wrapper_2023 .newest_posts {
	float: none;
	margin-left: 0;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
}



@media only screen and (max-width : 970px)  {
	
	.nl23_cols_top_bottom {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.nl23_cols_top_bottom * {
		padding-left: 0;
		padding-right: 0;
	}
	
	
}


.sct_hero_wrapper, .sct_kacheln_wrapper > div {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 6px;
	margin-bottom: 1.5em;
	line-height: normal;
}

.sct_hero_wrapper h1, .sct_kacheln_wrapper h1 {
	font-size: 32px;
	padding: 0 !important;
	margin-bottom: 0.4em;
	line-height: 1.1;
	-webkit-hyphens: auto;
	max-width: intrinsic;
	hyphens: auto;
	
}


.sct_hero_wrapper .box_content {
	background-color: #E3EBF1;
	margin: 0;
	width: auto;
	float: none;
	padding: 1.2em;
	justify-content: flex-end;
	display: flex;
	flex-direction: column;
	-webkit-hyphens: auto;
	hyphens: auto;
}

.sct_hero_wrapper .box_image {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	grid-column: span 2;
	padding-bottom: calc((100% - 6px) / 2);
}

.sct_kacheln_wrapper a, .sct_kacheln_wrapper a:hover, .sct_kachel {
	color: #fff !important;
	border-bottom: none !important;
}



.kachel_link {
	display: contents;
}


.sct_kachel {
	position: relative;
}

.kachel_link .sct_kachel::before {
	content: '';
	position: absolute;
	background-color: #323232;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s;
}

.kachel_link:hover .sct_kachel::before {
	opacity: 0.33;
}

.kachel_inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 1.2em;
	z-index: 2;
}

.kachel_bild .kachel_inner {
	filter: drop-shadow(0.2em 0.2em 0.3em rgba(0,0,0,0.7));
}

.kachel_icon {
	width: 2em;
	height: 2em;
	object-fit: contain;
	object-position: center center;
	margin-bottom: 1em;
}

.kachel_icon.quad2 {
	width: 3em;
	height: 3em;
}

.kachel_icon.quad3 {
	width: 4em;
	height: 4em;
}

.kachel_icon.breit {
	width: 6em;
	height: 2em;
}

.kachel_icon.hoch {
	width: 2em;
	height: 4em;
}


.sct_kachel.span_1 {
	padding-top: 100%;
}

.sct_kachel.span_2 {
	padding-top: calc((100% - 6px) / 2);
	grid-column: span 2;
}

.sct_kachel.span_3 {
	padding-top: calc((100% - 12px) / 3);
	grid-column: span 3;
}



/* kachel bgs */

.kachel_bild {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.grad_orange1 {
	 background: rgb(247,58,58);
background: -moz-linear-gradient(45deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
background: -webkit-linear-gradient(45deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
background: linear-gradient(45deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f73a3a",endColorstr="#efab0c",GradientType=1); 
}

.grad_orange2 {
	 background: rgb(247,58,58);
background: -moz-linear-gradient(135deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
background: -webkit-linear-gradient(135deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
background: linear-gradient(135deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f73a3a",endColorstr="#efab0c",GradientType=1);  
}

.grad_orange3 {
	 background: rgb(247,58,58);
background: -moz-linear-gradient(-135deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
background: -webkit-linear-gradient(-135deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
background: linear-gradient(-135deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f73a3a",endColorstr="#efab0c",GradientType=1);  
}

.grad_orange4 {
	 background: rgb(247,58,58);
background: -moz-linear-gradient(-45deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
background: -webkit-linear-gradient(-45deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
background: linear-gradient(-45deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f73a3a",endColorstr="#efab0c",GradientType=1); 
}



.grad_gruen1 {
	  background: rgb(19,151,119);
background: -moz-linear-gradient(45deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
background: -webkit-linear-gradient(45deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
background: linear-gradient(45deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#139777",endColorstr="#79bda5",GradientType=1); 
}

.grad_gruen2 {
	   background: rgb(19,151,119);
background: -moz-linear-gradient(135deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
background: -webkit-linear-gradient(135deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
background: linear-gradient(135deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#139777",endColorstr="#79bda5",GradientType=1); 
}

.grad_gruen3 {
	   background: rgb(19,151,119);
background: -moz-linear-gradient(-135deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
background: -webkit-linear-gradient(-135deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
background: linear-gradient(-135deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#139777",endColorstr="#79bda5",GradientType=1); 
}

.grad_gruen4 {
	   background: rgb(19,151,119);
background: -moz-linear-gradient(-45deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
background: -webkit-linear-gradient(-45deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
background: linear-gradient(-45deg, rgba(19,151,119,1) 0%, rgba(121,189,165,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#139777",endColorstr="#79bda5",GradientType=1); 
}



.grad_blau1 {
	  background: rgb(6,110,157);
background: -moz-linear-gradient(45deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
background: -webkit-linear-gradient(45deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
background: linear-gradient(45deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#066e9d",endColorstr="#79a6cb",GradientType=1); 
}

.grad_blau2 {
	   background: rgb(6,110,157);
background: -moz-linear-gradient(135deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
background: -webkit-linear-gradient(135deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
background: linear-gradient(135deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#066e9d",endColorstr="#79a6cb",GradientType=1); 
}

.grad_blau3 {
	   background: rgb(6,110,157);
background: -moz-linear-gradient(-135deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
background: -webkit-linear-gradient(-135deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
background: linear-gradient(-135deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#066e9d",endColorstr="#79a6cb",GradientType=1); 
}

.grad_blau4 {
	   background: rgb(6,110,157);
background: -moz-linear-gradient(-45deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
background: -webkit-linear-gradient(-45deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
background: linear-gradient(-45deg, rgba(6,110,157,1) 0%, rgba(121,166,203,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#066e9d",endColorstr="#79a6cb",GradientType=1); 
}







@media only screen and (max-width : 760px)  {
	
	.sct_hero_wrapper, .sct_kacheln_wrapper > div {
		grid-template-columns: 1fr;
	}
	
	.sct_hero_wrapper h1, .sct_kacheln_wrapper h1 {
		font-size: 32px;
		line-height: 36px;
	}
	
	.sct_kachel {
		padding-top: 75% !important;
		grid-column: span 1 !important;
	}
	
	.sct_hero_wrapper {
		
	}
	
	.sct_hero_wrapper .box_content {
		order: 3;
		background-color: transparent;
		padding: 1.2em 0;
	}
	



}



/* Super Hero Template */

.page-template-page-superhero #header_border, .page-template-page-superhero footer {
	border-left: 30px solid #fff;
	border-right: 30px solid #fff;
}

.page-template-page-superhero #memjoin_ct {
	display: none;
}

.superhero_wrapper {
	padding-top: 195px;
}

.superhero_wrapper .main_image {
	position: absolute;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	top: 195px;
	left: 30px;
	height: 100vh;
	width: calc(100% - 60px);
}

.superhero_wrapper .content_inner {
	width: 100%;
	max-width: 996px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}

.superhero_wrapper .title_wrapper {
	min-height: calc(50vh - 20px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 50px;
	padding-right: 50px;
}

.superhero_wrapper .title_inner {
	text-align: center;
	filter: drop-shadow(0.25em 0.25em 0.35em rgba(0,0,0,0.8));
	transform: skewY(-10deg);
	
}

.superhero_wrapper .title_inner h1 {
	color: #fff;
	border: 8px solid #fff;
	padding: 0.08em 0.5em;
	font-style: normal;
	margin: 0;
}

.superhero_wrapper .title_inner span {
	font-size: 1.4em;
	margin-top: 1em;
	background-color: #fff;
	padding: 0.1em 0.5em;
	display: inline-block;
	letter-spacing: 0.03em;
}

.superhero_wrapper .teasertext {
	font-size: 1.15em;
	font-weight: 600;
}

.superhero_wrapper .text_wrapper {
	padding: 30px;
	background-color: #fff;
}

.superhero_wrapper .wp-block-columns {
	margin-bottom: auto;
}

.superhero_wrapper .superhero_first .wp-block-button {
	font-size: 1rem;
	width: 100%;
}


.superhero_wrapper .superhero_first .wp-block-button a {
	width: 100%;
	/*background: rgb(247,58,58);
	background: -moz-linear-gradient(-90deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
	background: -webkit-linear-gradient(-90deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
	background: linear-gradient(-90deg, rgba(247,58,58,1) 0%, rgba(239,171,12,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f73a3a",endColorstr="#efab0c",GradientType=1);*/
}





@media only screen and (max-width : 970px)  {
	
	
	.superhero_wrapper .text_wrapper {
		padding: 20px 0;
	}
	
	.superhero_wrapper .main_image {
		left: 20px;
		width: calc(100% - 40px);
		top: 110px;
		height: 80vh;
	}
	
	.page-template-page-superhero #header_border, .page-template-page-superhero footer {
		border-left: 20px solid #fff;
		border-right: 20px solid #fff;
	}
	
	.page-template-page-superhero .nl23_cols_top_bottom, .page-template-page-superhero p {
		padding-left: 0;
		padding-right: 0;
	}
	
	.page-template-page-superhero .wp-block-column,  .page-template-page-superhero .text_wrapper > p {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.page-template-page-superhero  :where(.wp-block-columns.has-background) {
		padding: 2em 0;
	}
	
	.superhero_wrapper .title_inner h1 {
		width: min-content;
	}
	
	.page-template-page-superhero main {
		
	}
	
	.superhero_wrapper .title_wrapper {
		/*min-height: 100vmin;*/
		min-height: 80vh;
	}
	
	.superhero_wrapper {
		padding-top: 0;
	}
	
	.sct_hero_wrapper .box_content {
		padding: 1em;
		min-width: 300px;
	}
	
	/*
	.superhero_wrapper .sh_einleitung_col2 {
		padding-right: 20px;
		flex-basis: 30% !important;
	}
	
		.superhero_wrapper .sh_einleitung_col2 p {
		padding-left: 0;
		padding-right: 0;
	}
	
	*/
	
	.superhero_first > div  > .wp-block-columns div:nth-of-type(2) {
		padding-right: 20px;
		flex-basis: 30% !important;
	}
	

	
}

@media only screen and (max-width : 783px)  {
	
	.sct_hero_wrapper .box_content {
		padding: 1em 0;
	}
	
	/*
	.superhero_wrapper .sh_einleitung_row2 {
		flex-direction: column-reverse;
	}
	
	.superhero_wrapper .sh_einleitung_col2 {
		padding-left: 20px;
		clear: both;
	}
	
	.superhero_wrapper .sh_einleitung_col2 > .wp-block-group {
		flex-direction: row;
	}
	
	.superhero_wrapper .sh_einleitung_col2 figure {
		width: 340px;
		max-width: 45vw;
		padding-right: 20px;
	}
	
*/
	
	.superhero_first > div  > .wp-block-columns {
		flex-direction: column-reverse;
	}
	
	.superhero_first > div  > .wp-block-columns div:nth-of-type(2) {
		padding-left: 20px;
		clear: both;
	}
	
	.superhero_first > div  > .wp-block-columns div:nth-of-type(2) > .wp-block-group {
		flex-direction: row;
		align-items: flex-end;
	}
	
	.superhero_first > div  > .wp-block-columns div:nth-of-type(2) figure {
		width: 340px;
		max-width: 45vw;
		padding-right: 20px;
	}
	
	.superhero_first > div > .wp-block-columns div:nth-of-type(2) p {
		padding-left: 0;
		padding-right: 0;
	}
	
	
	.superhero_wrapper .superhero_first .wp-block-button a {
		width: auto;
	}
	
	
}



@media only screen and (max-width : 680px)  {
	
	.superhero_wrapper .title_wrapper {
		min-height: 130vmin;
	}
	
	.superhero_wrapper .main_image {
		height: 130vmin;
	}
	
	.superhero_wrapper .title_inner span {
		font-size: 1em;
	}
	
	.superhero_wrapper .title_inner h1 {
		font-size: 1.5em;
		line-height: normal;
		border: 5px solid #fff;
		padding: 0.4em 0.3em;
	}
	
	.sct_hero_wrapper .box_image {
		padding-bottom: calc((120% - 6px) / 2);
	}
	
	.newest_posts_wrapper_2023 .newest_posts_ct {
		grid-template-columns: 1fr;
		grid-gap: 2em;
	}
	
	.newest_posts_wrapper_2023 .newest_posts .cmpi {
		height: auto;
		padding-top: 56vmin;
	}
	
	
}





/* update wforms 230626 */


.wform_wrapper .wFormContainer {
	max-width: unset;
}

.wform_wrapper .wFormHeader {
	display: none;
}

.wform_wrapper .wForm > *, .wform_wrapper .wFormContainer .wForm .wFormTitle {
	padding-left: 0 !important;
	padding-right: 0 !important;
}




/* update 09-2023 */


.abstand_klein {
	padding: 18px;
}

.abstand_gross {
	padding: 36px;
}














