/************************************************************************************
Fonts
*************************************************************************************/

/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v17-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url('../fonts/open-sans-v17-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v17-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v17-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v17-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v17-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v17-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('../fonts/open-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v17-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v17-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
       url('../fonts/open-sans-v17-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v17-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v17-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v17-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v17-latin-600.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/************************************************************************************
Basic Styles
*************************************************************************************/


* { 
    margin:0; 
	padding:0; 
	outline:0; 
}

html, body { 
	height: 100%; 
	width: 100%; 
}

body {
	min-height: 100%; 
	height: auto;	
	background: #fff;
    position: relative;
}



/************************************************************************************
Layout Styles
*************************************************************************************/

body {
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400; 
	font-style: normal; 
	font-size: 16px;
	line-height: 25px;
	color: #797979;
}
	
a:link {
	color: #5e5e5e;
	font-weight: 400;
	text-decoration: none;
}

a:visited {
	color: #5e5e5e;
	font-weight: 400;
	text-decoration: none;
}

a:focus { 
	outline: none; 
}

a:hover {
	color: #000;
	font-weight: 400;
	text-decoration: none;
}

a img {
	border: none;
}
 
h1, h2, h3, h4, h5, h6 {
	color: #424242;
    text-align: left;
	font-weight: 400;
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 26px;
	line-height: 35px;
	font-weight: 600;
	margin-bottom: 4px;
	padding: 0;
}

h2 {
	font-size: 28px;
	margin-bottom: 10px;
}

h3 {
	font-size: 20px;
	margin: 0 0 10px 0;
    color: #000;
}

strong {
	font-weight: 400;
	color: #000;
}

hr.divider {
    border: 0; 
    height: 1px; 
    background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}

ul {
	list-style-type: none;
	line-height: 25px;
	padding: 0;
	margin-left: 5px;
	text-align: left;
    text-decoration: none;
}

/********************  Media-Querries - Body - Silbentrennung ********************/

@media (max-width: 500px) {
	body {
		-ms-word-break: normal;
		 word-break: normal;
		 /*Non standard for webkit*/
		 word-break: break-word;
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		}
	}

/************************************************************************************
Allgemeine Klassen
*************************************************************************************/

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;    
    font-style: normal;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid transparent;
    padding: 20px;
    margin-top: 0px;
    font-size: 16px;
    line-height: 15px;
    border-radius: 0rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-back {
    display: inline-block;
    font-weight: 400;
    text-align: center;    
    font-style: normal;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid transparent;
    padding: 10px 20px 10px 20px;
    margin-top: 0px;
    font-size: 16px;
    line-height: 15px;
    border-radius: 0rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #000;
    background-image: none;
    border-color: #000;
}

.btn-primary:hover {
    color: #fff;
    background-color: #5e5e5e;
    border-color: #5e5e5e;
}

.btn-primary-grey {
    color: #fff;
    background-color: #5e5e5e;
    background-image: none;
    border-color: #fff;
}

.btn-primary-grey:hover {
    color: #fff;
    background-color: #bfbfbf;
    border-color: #fff;
}

/********* Media-Querries *********/
@media (max-width: 992px) {    
    .responsive-30-992 {
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {    
    .responsive-30 {
        padding-bottom: 30px;
    }
}

/************************************************************************************
Header
*************************************************************************************/

#header {
    width: 100%;
    height: auto;   
}

.logo {
    width: 100%;
    height: auto;       
}

.authorsname {
    padding-top: 20px;
    padding-bottom: 20px;
}



/********* Main Navigation *********/
.navbar-color {
    background: #000;
}

.navbar a.navbar-brand {
    color: #fff;
}


/********* Media-Querries *********/

@media (max-width: 768px) {    
    .mobile-brand {
        display: block;
    }
    .hidden {
        display: none;
    }
}
@media (min-width: 768px) {
    .mobile-brand {
        display: none;
    }
    .hidden {
        display: block;
    }
}

/************************************************************************************
Startseite
*************************************************************************************/
.news-wrapper {
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #5e5e5e;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
}

.carousel-wrapper {
    width: 100%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 20px;
}

a.jcarousel-control-prev,
a.jcarousel-control-next {
    color: #fff;
}

.shop-section {
    width: 100%;
    height: auto;
    margin-top: 0px;
}

.shop-section,
.shop-section h2 {
    text-align: center;
}

.shop-section-buttons {
    padding: 0px 0 30px 0;
}

.shop-button {
    background: #5e5e5e;
    color:  #fff;
    border: 2px solid #fff;
    position:   relative;
    height: 60px;
    font-size:  12px;
    padding: 12px 18px 15px 18px;
    margin: 0px 5px 8px 5px;
    cursor: pointer;
    transition: 800ms ease all;
    outline:    none;
}

.shop-button:hover {
    background: #fff;
    color:  #bfbfbf;
}

.shop-button:before,.shop-button:after {
    content:'';
    position:   absolute;
    top:    0;
    right:  0;
    height: 2px;
    width:  0;
    background: #5e5e5e;
    transition: 400ms ease all;
}

.shop-button:after {
    right:  inherit;
    top:    inherit;
    left:   0;
    bottom: 0;
}

.shop-button:hover:before,.shop-button:hover:after {
    width:  100%;
    transition: 800ms ease all;
}



/************************************************************************************
Veröffentlichungen
*************************************************************************************/
hr.divider-book {
    border: 0; 
    height: 1px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}

hr.divider-book-headline {
    border: 0; 
    height: 1px;
    margin-top: 25px;
    margin-bottom: 50px;
    background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}

hr.divider-bookpresentation-headline {
    border: 0; 
    height: 1px;
    margin-top: 25px;
    margin-bottom: 30px;
    background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}

.main-section {
	width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 0px;
}

.main-section-rubric {
	width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.shop-section-books {
    padding-top: 30px;
    padding-bottom: 30px;
}

.shop-section-buttons button {
    font-size: 1.5em;
}

.book-content h1 {
	text-align: center;
}

.shop-section-books {
    margin-top: 50px;
}

.shop-section-books,
.shop-section-books h2 {
    text-align: center;
}

.bookseries {
    margin-top: 50px;
    padding-top: 80px;
    padding-bottom: 50px;
    background: #f5f5f5;	
}

.bookseries h2 {
	font-size: 28px;
    text-align: center;
	margin-bottom: 30px;
}

.bookshow img {
    margin-bottom: 30px;	
}

.teaser {
    width: 100%;
    height: auto;
	margin-top: 50px;
}
/************************************************************************************
Freebies Hörbuch
*************************************************************************************/
.btn-audio {
    margin-top: 0px;
    margin-left: 0px;
}
/************************************************************************************
Leseliste
*************************************************************************************/
.leseliste-section {   
    text-align: center;
    height: auto;
}

.leseliste-section-link {   
    font-size: 20px;
    font-style: normal;
    padding: 15px 20px 15px 20px;
}

a.leseliste-section-link {   
    font-size: 22px;    
    color: #fff;
    margin-bottom: 25px;
}

a.leseliste-section-link:visited {   
    font-size: 22px;    
    color: #fff;
}

a.leseliste-section-link:hover {
	color: #fff;
	font-size: 22px;
	text-decoration: none;
}

.leseliste-titel strong {   
    font-weight: 600;
}

.leseliste-titel h3 {
    text-align: center;
	font-size: 20px;
	margin: 0 0 20px 0;
    color: #000;
}

.leseliste-titel p {   
    text-align: center;
}

/************************************************************************************
Kontakt
*************************************************************************************/
.contact-section {
    width: 100%;
    height: auto;
    margin-top: 80px;
    margin-bottom: 80px;
}

form {
    width: 100%;
    height: auto;  
}

label { 
    display: block;
}

input.kontaktfeld {
    width: 100%; 
    border: 1px solid #424242;
    margin-bottom: 1em;
    padding: .2em .5em;
}

textarea {
    width: 100%; 
    border: 1px solid #424242;
    margin-bottom: 1em;
    padding: .2em .5em;
}

input.checktext {
    width: auto; 
    margin-bottom: 0;
    margin-right: 5px;
    padding: 0;
}

textarea {
    height: 10em;
}

button.contact-button {
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #5e5e5e;
    border: 1px solid #5e5e5e;
    padding: 6px 10px 6px 10px;
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.2;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

p.error,
span.error{
   color: #a70000;
}

.newsletter-contact a {
   color: #fff;
}

.newsletter-contact {
    padding-top: 20px;
    padding-bottom: 50px;
}

a.social-media-contact {
    text-align: center;   
}

a.social-media-contact {
    color: #000;
    display: inline-block;
    padding: 10px;   
}

a.social-media-contact:hover {
    color: #bfbfbf; 
}


/************************************************************************************
Datenschutz
*************************************************************************************/

ul.circle {
	list-style-type: circle;
	line-height: 25px;
	padding: 0;
	margin-left: 20px;
	text-align: left;
    text-decoration: none;
}


/************************************************************************************
Seitennavigation
*************************************************************************************/

#pagenavi li.page {
   padding: 1px 7px 1px 7px;
   margin: 3px 3px 3px 0;
   color: #5e5e5e;
   font-size: 12px;
   line-height: 25px;
   border: 1px solid #5e5e5e;
   } 

#pagenavi {
   float: left;
   padding: 0;
   position: relative;
   list-style: none;
   margin: 0;
   clear: both;
   }

#pagenavi li {
   display: inline-block;
   position: relative;
   }

#pagenavi li a {
   display: inline-block;
   padding: 1px 10px 1px 10px;
   line-height: 25px;
   margin: 5px;
   font-size: 12px;
   font-style: normal;
   font-weight: 300;
   text-decoration: none;
   border: 1px solid #5e5e5e;
   color: #5e5e5e;
   position: relative;
   }
 
#pagenavi li a:hover {
   color: #000;
   font-style: normal;
   font-weight: 300;
   border: 1px solid #000;
   text-decoration: none;
   }

#pagenavi a.active {
   color: #000;
   font-style: normal;
   border: 1px solid #000;
   font-weight: bold;
   text-decoration: none;
   }



/************************************************************************************
Zurück zum Seitenanfang
*************************************************************************************/
a.back-to-top {
	display: none;
	width: 133px;
	height: 155px;
	text-indent: -9999px;
	position: fixed;
	z-index: 999;
	right: 20px;
	bottom: 30px;
	background: url('../images/layout/top.png') no-repeat center 50%;
    background-color: transparent;
	display: i;
    text-decoration: none;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}



/************************************************************************************
Footer
*************************************************************************************/

footer {
    width: 100%;
	height: auto;
    min-height: 120px;
    background: #000;
}


/*** Subnavigation ***/
.subnavigation {
    background: #5e5e5e;
}

.subnavigation li {
    border-right: 1px solid #fff;
    margin: 5px 0 5px 0;
    font-size: 14px;
    line-height: 10px;
}

.subnavigation li:last-child {
    border-right: none;
}

.subnavigation .nav li a {
	color: #fff;
}

.subnavigation .nav li a:visited {
	color: #fff;
	text-decoration: none;
}

.subnavigation .nav li a:focus { 
	outline: none; 
}

.subnavigation .nav li a:hover {
	color: #bfbfbf;
	text-decoration: none;
}

/*** Social Media & Newsletter Section ***/
.social-news {
    width: 100%;
    height: auto;
    margin-top: 80px;
    margin-bottom: 80px;
}

.newsletter-button a {
    color: #fff;
}


/*** Copyright Section ***/
.copyright {
    text-align: center;
    padding: 0;
}

.copyright p {
	font-size: 12px;
	font-weight: 600;
	color: #bfbfbf;
    padding-top: 30px;
}

.copyright a:link {
    font-size: 12px;
	color: #bfbfbf;
	text-decoration: none;
}

.copyright a:visited {
	color: #bfbfbf;
	text-decoration: none;
}

.copyright a:focus { 
	outline: none; 
}

.copyright a:hover {
	color: #797979;
	text-decoration: none;
}

/************************************************************************************
Clearing Fix
*************************************************************************************/

.clearfix:after {
	clear:both;
	content:".";
	display:block;
	height:0;
	font-size:0;
	visibility:hidden;
	}

* html .clearfix {
	height:1%;
	}

*:first-child+html .clearfix {
	min-height:1%;
	}
  
*:first-child+html .clearfix { 
	zoom: 1; 
	} /* IE7 */h;
	content:".";
	display:block;
	height:0;
	font-size:0;
	visibility:hidden;
	}

* html .clearfix {
	height:1%;
	}

*:first-child+html .clearfix {
	min-height:1%;
	}
  
*:first-child+html .clearfix { 
	zoom: 1; 
	} /* IE7 */