/*!
Theme Name: shop.kalmeda
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: shop-kalmeda
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

shop.kalmeda is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

@font-face {
    font-family: 'Sana Sans';
    src: url('fonts/SanaSans-Regular.eot');
    src: local('Sana Sans Regular'), local('SanaSans-Regular'),
        url('fonts/SanaSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/SanaSans-Regular.woff2') format('woff2'),
        url('fonts/SanaSans-Regular.woff') format('woff'),
        url('fonts/SanaSans-Regular.ttf') format('truetype'),
        url('fonts/SanaSans-Regular.svg#SanaSans-Regular') format('svg');
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: local('Material Icons'), local('MaterialIcons-Regular'),
		url('fonts/MaterialIcons-Regular.woff2') format('woff2'),
		url('fonts/MaterialIcons-Regular.woff') format('woff'),
		url('fonts/MaterialIcons-Regular.ttf') format('truetype');
}

:root {
  --bg: #9ad1dc;
  --footer: #2f1a45;
  --blue: #005C83;
  --blue-rgb: 0, 92, 131;
  --kalmeda: #007e9c;
	--kalmeda-red: #f15f1c;
}


.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

form {
	onCopy: "return false";
	onDrag: "return false";
	onDrop: "return false";
	onPaste: "return false";
}
/* Fonts
	 ========================================================================== */

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal; 
	font-size: 24px;  /* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
	font-size: 1rem;
	margin: 0.67em 0;
	margin-top: 25px;
	font-weight: bold;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}


/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

.support-button {
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 700;

	position: fixed;
	top: 187px;
	right: -2px;
	display: block;
	z-index: 90000;
	border-radius: 3px;
	color: #fff;
	background: #007E9C;
	transform: rotate(-90deg);
	transform-origin: bottom right;
	cursor: pointer;

}

#BorlabsCookieBox ._brlbs-block-content._brlbs-bg-dark {
	padding: 15px;
}

.BorlabsCookie ._brlbs-content-blocker {
	display: none;
}

.BorlabsCookie ._brlbs-content-blocker ._brlbs-fresh_widget ._brlbs-default {
	position: relative;
	padding: 30px 15px 15px;
	background: #fff;
	border-radius: 4px;
	border: 1px solid rgba(0,0,0,.2);
	margin: .5rem
}

.BorlabsCookie ._brlbs-content-blocker ._brlbs-fresh_widget._brlbs-embed {
    top: 50%;
    left: 48%;
    transform: translate(-50%,-50%);
	max-width: 90%;
}

.BorlabsCookie ._brlbs-content-blocker {
	position: fixed;
	z-index: 9000000;
	background: rgba(0,0,0,.5);
	height: 100vh;
	width: 100vw;
}

.BorlabsCookie ._brlbs-content-blocker ._brlbs-default label {
	cursor: pointer;
	user-select: none;
}

.BorlabsCookie ._brlbs-content-blocker ._brlbs-default label input[type="checkbox"] {
	margin-right: 10px;
	cursor: pointer;
	accent-color: #005c83;
}
 
.BorlabsCookie ._brlbs-content-blocker ._brlbs-default button.close {
	position: absolute;
	line-height: 0;
	top: 0;
	right: 10px;
	cursor: pointer;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */

legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

input[type="checkbox"] {
	margin-right: 20px;
	width: auto;
	display: none;
}
input[type="checkbox"] + label {
	position: relative;
	vertical-align: top;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
}
input[type="checkbox"] + label::before {
	content: "";
	width: 18px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid var(--kalmeda);
    background-color: transparent;
    margin-right: 5px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 2px;
  }
  input[type="checkbox"]:checked + label::after {
	content: '';
	position: absolute;
	top: 7px;
	left: 7px;
	width: 5px;
	height: 10px;
	border: solid var(--kalmeda);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
  }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
	display: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: "Sana Sans", sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Best Practices
--------------------------------------------------------------*/

.best-practices h1 {
	text-align: left;
	padding-top: 2em;
	font-size: xx-large;
}

.best-practices ol {
	Font-size: 1.1em;
	list-style: decimal;
	margin: 2em 0em 0em 0em;
	padding: 0em 0em 0em 1em;
}

.best-practices ul {
	margin: 0em 0em 2em 0em;
	padding: 0em;
}

.best-practices p {
	Font-size: 1.1em;
	padding-bottom: 2em;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.btn {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button{
	border: 0px solid;
	background-color: transparent;
	color: var(--blue);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
	outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #404040;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
	margin-bottom: 10px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: var(--kalmeda);
}

a:visited:not(.btn) {
	color: var(--kalmeda);
}

a:hover, a:focus, a:active {
	text-decoration: underline;
	color: var(--kalmeda);
	outline: none;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
}
.main-navigation li {
	float: left;
	position: relative;
}
.main-navigation li.current-menu-item a {
	border-bottom: 2px solid var(--kalmeda);
}
.main-navigation li.current-menu-item ul li a:not(:hover) {
	/* prevent popover height bouncing on hover effect */
	border-color: transparent;
}
.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 769px) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.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;
	clip-path: none;
	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. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}
/*--------------------------------------------------------------
## own CSS
--------------------------------------------------------------*/

.page{
	margin-bottom: 0;
}
.site-header {
	padding: 20px;
	background-color: var(--bg);
	box-shadow: 0px 3px 8px 0px rgba(0,92,131,0.25);
}
.site-header .logo {
	padding: 0;
}

.site-header .row .site-branding,
.site-header .row .navigation {
	margin: 0;
	display: flex;
	flex-direction: row;
    align-items: center;
}

.logo {
	margin-left: -15px;
	padding: 25px 15px;
}
.logo a {
	vertical-align: middle;
}
input[type="submit"],
button[type="submit"],
.woocommerce button[type="submit"].button,
.klicktippnews a,
.btn {
	border: 0px solid #000000;
	color: #fff;
	background-color: #005c83;
	padding: 14px 10px;
	-webkit-box-shadow: 3px 3px 8px 0px rgba(0,92,131,0.25);
    -moz-box-shadow: 3px 3px 8px 0px rgba(0,92,131,0.25);
    box-shadow: 3px 3px 8px 0px rgba(0,92,131,0.25);
    text-transform: uppercase;
    letter-spacing: 0.085em;
    font-size: 14px;
    line-height: 1;
}
.woocommerce button[type="submit"].button:hover,
.woocommerce button[type="submit"].button:active,
.woocommerce button[type="submit"].button:focus,
.woocommerce button[type="submit"].button:disabled,
.woocommerce button.button:disabled[disabled]:hover {
	color: #fff;
	background-color: #005c83;
	outline: none;
	opacity: 1;
    padding: 14px 10px;
}
.delete-btn,
.kalmeda-btn-warning {
	background-color: var(--kalmeda-red);
}
.adduserbtn {
	display: block;
	margin: 0 0 20px auto;
}
.backtolist-btn {
	color: #000000;
	letter-spacing: 0.085em;
	text-transform: uppercase;
	border: 1px solid;
	border-color: #000000;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0);
	font-size: 19px;
	font-size: 0.75rem;
	padding: .6em 1em .4em;
	line-height: 2;
}
.kalmeda-btn:hover{
	-webkit-box-shadow: 0px 0px 0px 0px rgba(0,92,131,0.25);
	-moz-box-shadow: 0px 0px 0px 0px rgba(0,92,131,0.25);
	box-shadow: 0px 0px 0px 0px rgba(0,92,131,0.25);
}
.btn.kalmeda-btn-warning:hover,
.btn.kalmeda-btn-warning:not(:disabled):active {
  color: #212529;
  text-decoration: none;
  background-color: var(--kalmeda-red);
}

.btn {
	letter-spacing: 0.085em;
	text-transform: uppercase;
}

.material-icon-btn {
	line-height: 0;
}

.icon-btn-wrapper {
	display: inline-block;
	transform: translate(0, 33%);
}

.btn.loading {
	position: relative;
	pointer-events: none;
}

.btn.loading .button-content {
	visibility: hidden;
	opacity: 0;
}

/* button loading spinner for pending states */
.btn.loading::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 3px solid rgba(255,255,255,.5);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: loading-spinner 1s ease infinite;
}

@keyframes loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

input[type="submit"]:hover {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0,92,131,0.25);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0,92,131,0.25);
    box-shadow: 0px 0px 0px 0px rgba(0,92,131,0.25);
}
.navigation a {
	color: #007e9c;
	font-size: 1em;
	padding: 8px 0 4px;
    text-decoration: none; 
    margin-left: 25px;
}
.navigation li:first-child a{
	margin-left: 0;
}
.menu-footer-container {
	width: 100%;
	text-align: center;
}
.site-footer{
	padding: 50px 0;
	background-color: var(--footer);
}
ul#menu-footer {
	list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
#menu-footer li {
    display: inline-block;
    margin: 0 5px;
}
#menu-footer li a {
    padding: 10px 5px;
    font-size: 15px;
    color: white;
}
.footer_img {
	text-align: center;
}
p.stores-inner-wrapper {
	padding: 90px 0 14px;
}
.stores a img {
	margin-bottom: 10px;
}
.headline {
	color: var(--blue);
	font-weight: bold;
	margin-bottom: 16px;
}
.benutzerinformation {
	margin-top: 50px;
}
.description {
	width: 20%;
	float: left;
	color: #5D5D5D;
}
.value {
	float: left;
	width: 80%;
	margin-bottom: 20px;
}
.licence-section .value {
	margin: 0;
}
.last {
	margin-bottom: 40px;
}
.intern,
.site-main {
	margin-bottom: 50px;
}
.accountstatus,
.account-deletion-section {
	padding-top: 40px;
}
.notreleased{
	visibility: hidden;
}
.lizenz{
	font-weight: bold;
	color: var(--blue);
}

.licensebuy{
    margin-bottom: 10px;
}

.login input{
	width: 255px;
}
.login_page{
	margin-top: 80px;
}
.alert {
	margin-top: 20px;
}
.alert:not(.kalmeda-notice) {
	display: none;
}
.alert#resetpwmail_success,
.alert#deleteuseralert_cancelt,
.alert.alert-start-user-account-deletion {
	margin: 1rem 0 0;
}
.voucher-message-container,
.license-form .alert {
	margin-top: 20px;
}

.licence-section .loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.9);
	z-index: 999999;
}

.loader-inner-wrapper {
	display: flex;
	width: 100%;
	height: 100%;
}

.circle-loader {
	margin: auto;
	border: 8px solid var(--kalmeda);
	border-radius: 50%;
	border-top: 8px solid transparent;
	width: 80px;
	height: 80px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
  
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

h1,h4 {
	color: var(--blue);
	font-weight: lighter;
	font-size: 1.5em;
	text-align: center;
	margin-bottom: 30px;
}
.login_form{
	text-align: center;
}
.login{
	padding-top: 70px;
}
.login a{
	color: var(--blue);
}
.login_element,
.login_form{
	margin-bottom: 20px;
}
.infobild{
	text-align: center;
}
#wronguserorpass #wrongcode #wrongtoken{
	position: absolute;
	top: 158px;
	width: 40%;
	padding: 10px;
	right: -95px;
}
input[type="submit"]{
	cursor: pointer;
}
.transparent{
	color: transparent;
}
.page-id-11 .header_btn{
	display: none;
}

.section_line{
	width: 100%;
	height: 1px;
	margin-top: 20px;
	background-color: #007E9C;

}
.lizenz{
	border: 1px solid;
    border-radius: 3px;
    width: 150px;
    text-align: center;
    padding: 9px 0;
    margin-bottom: 8px;
}
.note{
	width: 110px;
    float: left;
}
.inner_note{
	margin-bottom: 3px;
}
.klicktippnews a{
	margin: 8px 0;
}
input.btn[type="submit"]{
	margin-bottom: 8px;
}
button.btn:focus,
input.btn:focus {
	outline: none;
	box-shadow: 3px 3px 8px 0px rgba(0,92,131,0.25);
}
header .btn.logoutbtn {
	margin: 0;
}
.select-wrapper {
  position: relative;
  width: 230px;
  float: left;
}
select {
    padding-left: 4px;
    width: 230px;
    height: 34px;
    margin-bottom: 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    border-radius: 3px;
}
select::-ms-expand {
  display: none;
}
.select-wrapper::before {
  content: "\25be";
  font-size: 20px;
  position: absolute;
  right: 15px;
  top: 3px;
  color: gray;
}
.select-wrapper::before {
  pointer-events: none;
}
.profile-data-form .description {
	padding-top: 5px;
}
.profile-data-form .submit-section,
.user-delete-section {
	margin-bottom: 20px;
}
.user-delete-section button.kalmeda-btn,
.wrapper-user-account-deletion button.kalmeda-btn {
	float: left;
}
.first_col{
	width: 130px;
	vertical-align: top;
}
.voucher_list {
	width: 150px;
}
.value p {
	margin-bottom: 0px;
}
.freshwidget-dialog {

    top: 50% !important;
    margin-top: -330px !important;
}
.freshwidget-button a {
	box-shadow: none !important;
    border-radius: 3px !important;
    cursor: pointer !important;
}
.voucherbtnset {
	margin-bottom: 8px;
}
.newsletter-subscribe-container {
	margin-bottom: 15px;
}
.klicktippnews button {
	display: inline-block;
	float: none;
}
.klicktippnews button.abo {
	background-color: var(--bg);
	color: #005c83;
}

/*--------------------------------------------------------------
## General
--------------------------------------------------------------*/
html, body {
    height: 100%;
}
.hidden {
	display: none;
}
#page {
    display: flex;
    height: 100%;
    flex-direction: column;
}
#content {
    flex: 1;
}
.outer-search {
    position: relative;
    width: 280px;
}
.search-icon {
    position: absolute;
    right: 4px;
    top: 4px;
}
.outer-search input[name="user-search"] {
    width: 100%;
    float: right;
    padding-right: 28px;
}
.notfound {
    display: none;
}

/*--------------------------------------------------------------
## User Feedback
--------------------------------------------------------------*/
.outer-info-sign {
    position: relative;
}
.material-icons {
    font-family: 'Material Icons';
    font-size: 24px;
    font-style: normal;
}
.info-sign-icon {
    position: absolute;
    transform: translate(-30px, 16%);
}
.confirm-mail-warning {
    color: #FFAB00;
}
.outer-input-with-warning {
    position: relative;
    display: inline-block;
}
.mobile-warning {
    visibility: hidden;
    font-size: .8em;
    position: absolute;
    bottom: -9px;
    left: 0;
}

/*--------------------------------------------------------------
## Support
--------------------------------------------------------------*/
.fd-btn-right {
    transform: translate(0px, -30px);
    -moz-transform: translate(0px, -30px);
    -webkit-transform: translate(0px, -30px);
    -o-transform: translate(0px, -30px);
}

/*--------------------------------------------------------------
##  woocommerce */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button {
    background-color: var(--blue) !important;
    color: #fff !important;
    font-weight: normal !important;
}
input[type="number"]{
	padding: 5px;
}
.woocommerce-page h1{
	margin-top: 25px;
	text-align: left;
}
.woocommerce-page h2,
.woocommerce-page h3 {
	font-size: 1rem;
	font-weight: bold;
	text-align: left;
}
.woocommerce-page h3{
	margin: 30px 0 15px;
}
td.actions input[type="submit"]{
	width: auto;
}
#customer_details .col-1,
#customer_details .col-2{
	padding: 0;
}
.woocommerce .col-1,
.woocommerce .col-2{
	max-width:none;
}
.woocommerce form .form-row label {
    width: 233px;
}
.woocommerce form .validate-required label[for=terms] {
    width: auto;
}
.woocommerce form .form-row {
    margin-bottom: 0;
}
#billing_address_2_field input{
	margin-left: 233px;
}
.woocommerce form .form-row input.input-text {
	width: 200px;
}
#order_comments_field label{
	width: 163px;
}
#order_comments{
	width: 233px;
}
.woocommerce form .form-row input.input-text {
	width: 100%;
    margin-bottom: 10px;
}
form.woocommerce-ResetPassword .woocommerce-form-row {
	display: block;
	float: none;
}
.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
	right: 8px;
    top: 4px;
}

.form-row.place-order .ppcp-cancel{
	text-align: left;
}

.ppc-button-wrapper {
	width: 100%;
}

.checkout-buttons-loading-container {
	position: relative;
}

.loading-indicator.loading {
	min-height: 180px;
}

.loading-indicator.loading::after {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	border: 5px solid rgba(var(--blue-rgb), .6);
	border-top-color: var(--blue);
	border-radius: 50%;
	animation: loading-spinner 1s ease infinite;
}

form.woocommerce-checkout #payment div.payment_box::after {
	display: none;
}

.ppcp-cancel {
	display: none;
}

/*--------------------------------------------------------------
## Users page
--------------------------------------------------------------*/
.note {
	font-size: 12px;
	color: #777777;
}

.container.users_page {
    padding: 40px 20px 20px;
    width: 100%;
}

.container .users-content h4 {
    margin: 0 auto 0 0;
    text-align: left;
}
.outer-tableusers {
    clear:both;
    width: 100%;
    overflow-x: auto;
}
.tableusers {
    border-collapse: collapse;
}

.table_content tr:first-child,
.table_content tr:nth-last-child(n + 2) {
	border-bottom: 1px solid #e0e0e0;
}

.table_content td,
.table_content th {
	text-align: left;
	padding: 12px 24px;
	vertical-align: middle;
}

.table_content th {
	font-size: 13px;
	line-height: 17px;
	user-select: none;
	color: rgba(0, 0, 0, 0.54);
	color: #777777;
	content: "arrow_downward";
}

.table_content td {
	font-size: 14px;
	white-space: nowrap;
}

.table_content tbody tr:hover {
	background-color: #eee;
}

.table_content tbody tr {
	cursor: pointer;
}

tr:nth-last-child {
	border-bottom-color: #4f4f4f;
}

d, th {
	display: table-cell;
	vertical-align: inherit;
}
nav.navigation,
.product_meta{
	display: none;
}

.container .section-row {
	margin-bottom: 20px;
}

/*--------------------------------------------------------------
##  Media Queries */

@media (min-width: 769px){
    body:not(.single-product) .ppc-button-wrapper {
		width: 48%;
		margin-left: auto;
	}
}

@media (min-width: 576.1px){
    input[type="text"],input[type="submit"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea,
	.btn {
        width: 230px;
    }
    .header_btn input[type="submit"]{
        width: auto;
    }
}

@media (max-width: 768px) {
	.site-header .container {
		max-width: none;
	}
	button:not(.woocommerce-Button) {
		float: right;
	}
	button.menu-toggle {
		cursor: pointer;
		font-size: 1rem;
    	padding: 13px;
	}
	.menu-main_menu-container {
		margin-top: 50px;
	}
	.main-navigation li {
		float: none;
	}
	.menu-main_menu-container ul li {
		text-align: center;
		margin-left: 0;
	}
	.menu-main_menu-container ul li:not(:last-child) {
		margin-bottom: 15px;
	}
	.menu-main_menu-container ul li a {
		margin: 0;
		padding: 0;
		display: inline-block;
		width: auto;
	}
	.menu-main_menu-container ul ul {
		padding: 15px 0 0 20px;
	}
	
	.navigation {
	    margin-top: 29px;
	}
	.logo {
	    padding-top: 28px;
	}
	.login_page {
	    margin-top: 10px;
	}
	.infobild{
		display: none;
	}
	.lizenz {
	    width: 100%;
	}

	.site-header{
		position: relative;
	}
	.navigation{
		max-width: 100%;
	    flex: 100%;
	    padding-right: 0;
	    padding-left: 0;
	}
	.main-navigation{
		padding-left: 0;
		padding-right: 0;
	}
	.main-navigation ul li{
		text-align: left;
	}
	.site-branding{
		position: absolute;
		left: 20px;
		top: 28px;
	}
	.site-header .header_btn {
		position: absolute;
		right: 80px;
	}
	.site-header .header_btn .btn {
		width: auto;
	}
	.stores p.stores-inner-wrapper,
	.social p.stores-inner-wrapper {
	    padding-top: 50px;
	    text-align: center;
	}
	p.stores-inner-wrapper a {
		margin: 0 8px;
	}
	.logo_center img.logo{
		margin-left: 0;
	}
	.social{
		float: none;
		margin-top: 15px;
	}
	.social p.stores-inner-wrapper {
		padding-bottom: 0;
	}
    .page-id-11 .site-header .col-md-8,
    .page-id-11 .site-header .col-xl-8{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
	.modal {
		padding-right: 0 !important;
	}
}

@media (max-width: 576px) {
	input[type="text"], input[type="email"],input[type="submit"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    	width: 100%;
	}
	.save, .btn {
	    margin-left: 0;
	    width: 100%;
	    margin-top: 5px;
	}
	.transparent{
		display: none;
	}
	.description {
		width: 100%;
		margin-bottom: 5px;
	}
	.value,
	.klicktippnews a{
		width: 100%;
	}
	.site-header .header_btn {
		right: 65px;
	}
	select{
		width: 100%;
	}
	.select-wrapper {
	    width: 100%;
	}

    /*--------------------------------------------------------------
    ## User Feedback
    --------------------------------------------------------------*/
    .info-sign-icon {
        transform: none;
        right: 0;
    }
    .outer-input-with-warning {
        display: inherit;
    }
}

@media (max-width: 420px) {
	.modal-footer {
		display: flex;
		flex-direction: row;
		align-items: stretch;
	}

	.modal-footer button {
		line-height: 1.25;
	}
}

@media (min-width: 768.1px) and (max-width: 1024px) {
	.navigation a {
		margin-left: 12px;
		letter-spacing: -0.4px;
	}
	.stores {
		text-align: center;
	}
	.stores p.stores-inner-wrapper {
		padding-top: 55px;
	}

}

@media (min-width: 768px) {
	.main-navigation ul ul {
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
		float: left;
		position: absolute;
		top: 100%;
		left: -999em;
		z-index: 99999;
		background: #fff;
		padding: 15px;
		min-width: 200px;
	}

	.main-navigation ul ul li:hover > ul,
	.main-navigation ul ul li.focus > ul {
		left: 100%;
	}
	.main-navigation ul li:hover > ul,
	.main-navigation ul li.focus > ul {
		left: auto;
	}
	.main-navigation ul ul li:not(:last-child) {
		margin-bottom: 10px;	
	}
	.main-navigation ul ul li {
		float: none;
	}
	.main-navigation ul ul li a {
		margin: 0;
		padding: 0;
		display: inline-block;
		width: auto;
	}
	.navigation a {
		border-bottom: 2px solid transparent;
		-webkit-transition: border 0.25s ease, font-size 0.25s ease;
		-moz-transition: border 0.25s ease, font-size 0.25s ease;
		-ms-transition: border 0.25s ease, font-size 0.25s ease;
		-o-transition: border 0.25s ease, font-size 0.25s ease;
		transition: border 0.25s ease, font-size 0.25s ease;
	}
	.navigation a:hover {
		border-bottom: 2px solid #007e9c;
	}
	.account_row {
		margin-bottom: 15px;
	}
	.password-devices-section .account_row,
	.licence-section .account_row {
		margin: 0;
	}
	.password-devices-section {
		padding-top: 50px;
	}
	.stores img {
		margin-bottom: 8px;
	}
}

/*/////////////////////////////*/

/* Style the container for inputs */


/* The message box is shown when the user clicks on the password field */
#message {
	/*background: #f1f1f1;*/
	color: #000;
	position: relative;
	padding: 0px;
	margin-top: 0px;
}

#message p {
	padding: 0px 35px;
	font-size: 15px;
	margin-bottom: 0.2em;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
	color: var(--kalmeda);
}

.valid:before {
	position: relative;
	content: "✔";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
	color: var(--kalmeda-red);
}

.invalid:before {
	position: relative;
	content: "✖";
}

/*--------------------------------------------------------------
## Business Login
--------------------------------------------------------------*/
.woocommerce-page header .business-logout-button {
	width: 100%;
}
.page-template-template-business-login main {
	padding: 30px 15px;
	display: flex;
	flex-direction: column;
	height: 100%;
	align-items: center;
	justify-content: center;
}
.page-template-template-business-login h1 {
	margin-top: 0;
}
.page-template-template-business-login p {
	margin: 0;
}
.page-template-template-business-login p.login-remember {
	text-align: left;
}
.page-template-template-business-login input:not(input[type="checkbox"]) {
	width: 100%;
}
.page-template-template-business-login .login-password,
.page-template-template-business-login .login-submit,
.page-template-template-business-login .login-wrapper .login-header {
	margin-bottom: 20px;
}
.page-template-template-business-login .login-wrapper .login-header p {
	text-align: center;
	margin-bottom: 24px;
}
.login-wrapper {
	max-width: 720px;
}
.page-template-template-business-login .login-form-wrapper {
	margin: 0 auto 20px;
	max-width: 320px;
}
.page-template-template-business-login #form-business-login {
	text-align: center;
}

.login-remember label {
	cursor: pointer;
}
