/*
Template.less
================================================
Hier werden alle Bestandteile importiert.
*/
/*
Variables
================================================
Hier werden die Variablen für das Template definiert.
*/
/* Default Colors */
/*
Views
================================================
in _mixins werden mixins definiert und per import hier eingebunden.
*/
/*
Unitize mixin
================================================
The unitize mixins converts values from px-units to the relative rem-units, providing all the benefits of units like em and rem, without you having to do any calculations yourself.

######Syntax:
`@property` = the property that should be unitized.<br/>
`@value` = pixel-value<br/>
`@baseValue` (optional) = default browser font-size (@remScaleFactor in most cases)<br/>

######Example Unitize mixin with custom property
`.unitize(@property, @value);`<br/>
`.unitize(font-size, 16);`

######Specific built-in functions
In addition to the general `.unitize()` mixin, Shopware contains specific mixins to quickly calculate values which (for example) have more than one property.<br/>
<br/>

`.unitize-height(@value)`<br/>
`.unitize-width(@value)`<br/>
`.unitize-max-height(@value)`<br/>
`.unitize-max-width(@value)`<br/>
`.unitize-min-width(@value)`<br/>
`.unitize-padding(@topValue, @rightValue, @bottomValue: @topValue, @leftValue: @rightValue)`<br/>
`.unitize-margin(@topValue, @rightValue, @bottomValue: @topValue, @leftValue: @rightValue)`<br/>
`.unitize-variable(@value)`<br/>
*/
/*.unitize(@value, @baseValue: @remScaleFactor, @property: font-size) when (isnumber(@value)) and(isnumber(@baseValue)) and (iskeyword(@property)) {
  @pxValue: @value;
  @remValue: (@value / @baseValue);
    @{property}: ~"@{pxValue}px";
    @{property}: ~"@{remValue}rem";
}*/
/* Testkommentar */
/*
Views
================================================
in _components werden die standartisierte Komponenten definiert und per import hier eingebunden.
*/
.sidebar .widget {
  padding: 20px 20px 20px 20px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  border-radius: 0.25rem;
  margin: 24px 0px 24px 0px;
  margin: 1.5rem 0rem 1.5rem 0rem;
}
.sidebar .widget .widget--title {
  font-size: 18px;
  font-size: 1.125rem;
  background: #6f5499;
  margin: -20px -20px 20px -20px;
  margin: -1.25rem -1.25rem 1.25rem -1.25rem;
  padding: 9px 20px 9px 20px;
  padding: 0.5625rem 1.25rem 0.5625rem 1.25rem;
  color: #fff;
}
.widget_search input[type="text"] {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.widget_search input[type="submit"] {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  border-style: solid;
  border-width: 1px;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border-radius: 4px;
}
.widget_pages ul,
.widget_nav_menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.widget_pages ul ul,
.widget_nav_menu ul ul {
  padding-left: 15px;
  padding-left: 0.9375rem;
}
/*
Modules
================================================
in _modules werden standartisierte Module gestylt und per import hier eingebunden.
*/
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/*
Views
================================================
in _views werden die Templates definiert und per import hier eingebunden.
(z.B. global für das Allgemeine Template, contact für die Kontaktseite.)
*/
html,
body {
  height: 100%;
}
body {
  font-size: 16px;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container {
  min-width: 320px;
}
.is--right {
  float: right;
}
.is--align-right {
  text-align: right;
}
.is--center {
  float: none;
  margin: 0 auto;
}
.is--align-center {
  text-align: center;
}
.is--left {
  float: left;
}
.is--align-left {
  text-align: right;
}
.is--hidden {
  display: none;
}
.is--visible {
  display: inline-block;
}
.display {
  box-shadow: 0 0 1px #6f5499 inset;
  background: rgba(111, 84, 153, 0.5);
}
body {
  /*&.admin-bar {
    .navbar-fixed-top {
      .unitize(top, 32);

      @media screen and (max-width: 782px) {
        .unitize(top, 46);
      }

    }
  }*/
}
#test {
  width: 50px;
  height: 50px;
  display: block;
  background: #2a2730;
}
#mainnav {
  background: #6f5499;
  padding: 10px 0px 10px 0px;
  padding: 0.625rem 0rem 0.625rem 0rem;
}
#mainnav a {
  color: #fff;
}
#mainnav .nav > .active > a,
#mainnav .nav > .active > a:focus,
#mainnav .nav > .active > a:hover .nav > li > a:focus,
#mainnav .nav > li > a:hover,
#mainnav .nav .open > a,
#mainnav .nav .open > a:focus,
#mainnav .nav .open > a:hover {
  background: #a491c2;
}
#footer {
  background: #99979c;
  padding: 60px 0px 60px 0px;
  padding: 3.75rem 0rem 3.75rem 0rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #fff;
}
#footer a {
  color: #eee;
}
/*# sourceMappingURL=template.css.map */