@charset "UTF-8";

/*
Theme Name: Gito Library - Twenty Twenty-One
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 5.7
Requires PHP: 5.6
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Spacer...............Specific styles for the spacer block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

/* Categories 01 to 03 are the basics. */

/* Variables */
:root {

	/* Font Family */
	--global--font-primary: var(--font-headings, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
	--global--font-secondary: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);

	/* Font Size */
	--global--font-size-base: 1.25rem;
	--global--font-size-xs: 1rem;
	--global--font-size-sm: 1.125rem;
	--global--font-size-md: 1.25rem;
	--global--font-size-lg: 1.5rem;
	--global--font-size-xl: 2.25rem;
	--global--font-size-xxl: 4rem;
	--global--font-size-xxxl: 5rem;
	--global--font-size-page-title: var(--global--font-size-xxl);
	--global--letter-spacing: normal;

	/* Line Height */
	--global--line-height-body: 1.7;
	--global--line-height-heading: 1.3;
	--global--line-height-page-title: 1.1;

	/* Headings */
	--heading--font-family: var(--global--font-primary);
	--heading--font-size-h6: var(--global--font-size-xs);
	--heading--font-size-h5: var(--global--font-size-sm);
	--heading--font-size-h4: var(--global--font-size-lg);
	--heading--font-size-h3: calc(1.25 * var(--global--font-size-lg));
	--heading--font-size-h2: var(--global--font-size-xl);
	--heading--font-size-h1: var(--global--font-size-page-title);
	--heading--letter-spacing-h6: 0.05em;
	--heading--letter-spacing-h5: 0.05em;
	--heading--letter-spacing-h4: var(--global--letter-spacing);
	--heading--letter-spacing-h3: var(--global--letter-spacing);
	--heading--letter-spacing-h2: var(--global--letter-spacing);
	--heading--letter-spacing-h1: var(--global--letter-spacing);
	--heading--line-height-h6: var(--global--line-height-heading);
	--heading--line-height-h5: var(--global--line-height-heading);
	--heading--line-height-h4: var(--global--line-height-heading);
	--heading--line-height-h3: var(--global--line-height-heading);
	--heading--line-height-h2: var(--global--line-height-heading);
	--heading--line-height-h1: var(--global--line-height-page-title);
	--heading--font-weight: normal;
	--heading--font-weight-page-title: 300;
	--heading--font-weight-strong: 600;

	/* Block: Latest posts */
	--latest-posts--title-font-family: var(--heading--font-family);
	--latest-posts--title-font-size: var(--heading--font-size-h3);
	--latest-posts--description-font-family: var(--global--font-secondary);
	--latest-posts--description-font-size: var(--global--font-size-sm);
	--list--font-family: var(--global--font-secondary);
	--definition-term--font-family: var(--global--font-primary);

	/* Colors */
	--global--color-black: #000;
	--global--color-dark-gray: #28303d;
	--global--color-gray: #39414d;
	--global--color-light-gray: #f0f0f0;
	--global--color-green: #d1e4dd;
	--global--color-blue: #d1dfe4;
	--global--color-purple: #d1d1e4;
	--global--color-red: #e4d1d1;
	--global--color-orange: #e4dad1;
	--global--color-yellow: #eeeadd;
	--global--color-white: #fff;
	--global--color-white-50: rgba(255, 255, 255, 0.5);
	--global--color-white-90: rgba(255, 255, 255, 0.9);
	--global--color-primary: var(--global--color-dark-gray);

	/* Body text color, site title, footer text color. */
	--global--color-secondary: var(--global--color-gray);

	/* Headings */
	--global--color-primary-hover: var(--global--color-primary);
	--global--color-background: var(--global--color-green);

	/* Mint, default body background */
	--global--color-border: var(--global--color-primary);

	/* Used for borders (separators) */

	/* Spacing */
	--global--spacing-unit: 20px;
	--global--spacing-measure: unset;
	--global--spacing-horizontal: 25px;
	--global--spacing-vertical: 30px;

	/* Elevation */
	--global--elevation: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);

	/* Forms */
	--form--font-family: var(--global--font-secondary);
	--form--font-size: var(--global--font-size-sm);
	--form--line-height: var(--global--line-height-body);
	--form--color-text: var(--global--color-dark-gray);
	--form--color-ranged: var(--global--color-secondary);
	--form--label-weight: 500;
	--form--border-color: var(--global--color-secondary);
	--form--border-width: 3px;
	--form--border-radius: 0;
	--form--spacing-unit: calc(0.5 * var(--global--spacing-unit));

	/* Cover block */
	--cover--height: calc(15 * var(--global--spacing-vertical));
	--cover--color-foreground: var(--global--color-white);
	--cover--color-background: var(--global--color-black);

	/* Buttons */
	--button--color-text: var(--global--color-background);
	--button--color-text-hover: var(--global--color-secondary);
	--button--color-text-active: var(--global--color-secondary);
	--button--color-background: var(--global--color-secondary);
	--button--color-background-active: var(--global--color-background);
	--button--font-family: var(--global--font-primary);
	--button--font-size: var(--global--font-size-base);
	--button--font-weight: 500;
	--button--line-height: 1.5;
	--button--border-width: 3px;
	--button--border-radius: 0;
	--button--padding-vertical: 15px;
	--button--padding-horizontal: calc(2 * var(--button--padding-vertical));

	/* entry */
	--entry-header--color: var(--global--color-primary);
	--entry-header--color-link: currentColor;
	--entry-header--color-hover: var(--global--color-primary-hover);
	--entry-header--color-focus: var(--global--color-secondary);
	--entry-header--font-size: var(--heading--font-size-h2);
	--entry-content--font-family: var(--global--font-secondary);
	--entry-author-bio--font-family: var(--heading--font-family);
	--entry-author-bio--font-size: var(--heading--font-size-h4);

	/* Header */
	--branding--color-text: var(--global--color-primary);
	--branding--color-link: var(--global--color-primary);
	--branding--color-link-hover: var(--global--color-secondary);
	--branding--title--font-family: var(--global--font-primary);
	--branding--title--font-size: var(--global--font-size-lg);
	--branding--title--font-size-mobile: var(--heading--font-size-h4);
	--branding--title--font-weight: normal;
	--branding--title--text-transform: uppercase;
	--branding--description--font-family: var(--global--font-secondary);
	--branding--description--font-size: var(--global--font-size-sm);
	--branding--description--font-family: var(--global--font-secondary);
	--branding--logo--max-width: 300px;
	--branding--logo--max-height: 100px;
	--branding--logo--max-width-mobile: 96px;
	--branding--logo--max-height-mobile: 96px;

	/* Main navigation */
	--primary-nav--font-family: var(--global--font-secondary);
	--primary-nav--font-family-mobile: var(--global--font-primary);
	--primary-nav--font-size: var(--global--font-size-md);
	--primary-nav--font-size-sub-menu: var(--global--font-size-xs);
	--primary-nav--font-size-mobile: var(--global--font-size-sm);
	--primary-nav--font-size-sub-menu-mobile: var(--global--font-size-sm);
	--primary-nav--font-size-button: var(--global--font-size-xs);
	--primary-nav--font-style: normal;
	--primary-nav--font-style-sub-menu-mobile: normal;
	--primary-nav--font-weight: normal;
	--primary-nav--font-weight-button: 500;
	--primary-nav--color-link: var(--global--color-primary);
	--primary-nav--color-link-hover: var(--global--color-primary-hover);
	--primary-nav--color-text: var(--global--color-primary);
	--primary-nav--padding: calc(0.66 * var(--global--spacing-unit));
	--primary-nav--border-color: var(--global--color-primary);

	/* Pagination */
	--pagination--color-text: var(--global--color-primary);
	--pagination--color-link-hover: var(--global--color-primary-hover);
	--pagination--font-family: var(--global--font-secondary);
	--pagination--font-size: var(--global--font-size-lg);
	--pagination--font-weight: normal;
	--pagination--font-weight-strong: 600;

	/* Footer */
	--footer--color-text: var(--global--color-primary);
	--footer--color-link: var(--global--color-primary);
	--footer--color-link-hover: var(--global--color-primary-hover);
	--footer--font-family: var(--global--font-primary);
	--footer--font-size: var(--global--font-size-sm);

	/* Block: Pull quote */
	--pullquote--font-family: var(--global--font-primary);
	--pullquote--font-size: var(--heading--font-size-h3);
	--pullquote--font-style: normal;
	--pullquote--letter-spacing: var(--heading--letter-spacing-h4);
	--pullquote--line-height: var(--global--line-height-heading);
	--pullquote--border-width: 3px;
	--pullquote--border-color: var(--global--color-primary);
	--pullquote--color-foreground: var(--global--color-primary);
	--pullquote--color-background: var(--global--color-background);
	--quote--font-family: var(--global--font-secondary);
	--quote--font-size: var(--global--font-size-md);
	--quote--font-size-large: var(--global--font-size-xl);
	--quote--font-style: normal;
	--quote--font-weight: 700;
	--quote--font-weight-strong: bolder;
	--quote--font-style-large: normal;
	--quote--font-style-cite: normal;
	--quote--line-height: var(--global--line-height-body);
	--quote--line-height-large: 1.35;
	--separator--border-color: var(--global--color-border);
	--separator--height: 1px;

	/* Block: Table */
	--table--stripes-border-color: var(--global--color-light-gray);
	--table--stripes-background-color: var(--global--color-light-gray);
	--table--has-background-text-color: var(--global--color-dark-gray);

	/* Widgets */
	--widget--line-height-list: 1.9;
	--widget--line-height-title: 1.4;
	--widget--font-weight-title: 700;
	--widget--spacing-menu: calc(0.66 * var(--global--spacing-unit));

	/* Admin-bar height */
	--global--admin-bar--height: 0px;
}

.admin-bar {
	--global--admin-bar--height: 32px;
}


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

.wrapper{
	overflow: hidden;
	font-family: "Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;	
	    padding-right: 1.9rem !important;
    padding-left: 1.9rem !important;
}
button.sub-menu-toggle {
    display: none;
}

.clear{
	clear:both;
	
}
.header {
    padding: 16px 0;
    width: 100%;
    display: table;
}
.nav li:last-child {
    margin-right: 0;
}


.nav li {
    list-style: none;
    float: left;
    margin-right: 32px;
}
.nav li a {
    font-size: 16px;
    color: #265177;
    text-decoration: none;
    font-weight: bold;
}



.single-left-sidebar {
    float: left;
    width: 25%;
    padding-top: 40px;
}
.single-left-sidebar h2 {
    padding-bottom: 17px;
}
.single-left-sidebar ul {
    padding-left: 0;
}
.single-left-sidebar ul li {
    list-style: none;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.single-left-sidebar a {
    text-decoration: none;
    font-size: 14px;
    color: #0e4b80;
}
.single-middle-content {
    width: 50%;
    float: left;
    padding-top: 40px;
}
a.a2a_dd.addtoany_share_save.addtoany_share {
    display: none;
}
.single-header-left {
    line-height: 0;
    float: left;
}
.single-middle-header {
    display: table;
    width: 100%;
    padding-bottom: 18px;
    margin-bottom: 0px;
    border-bottom: 1px solid #ccc;
}
.single-header-left {
    line-height: 0;
    float: left;
}
.middle-header {
    text-align: center;
    float: left;
    margin: 0 auto;
    display: table;
    padding: 18px 32px;
    width: 59%;
}
.single-middle-info {
    padding-top: 22px;
    padding-bottom: 13px;
    border-bottom: 1px solid #ccc;
}

.single-md-div {
	 padding-top: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #ccc;
}

.md-link-sec {
    padding-top: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #ccc;
    display: table;
    width: 100%;
}
a.pdf-link {
    background-image: url(https://library.gito.de/wp-content/uploads/2021/06/pdf-icon.png);
    background-position: left 1px;
    background-size: 16px;
    background-repeat: no-repeat;
    padding-left: 22px;
    margin-top: 15px;
    display: table;
}

.md-link-left {
    float: left;
}
.md-link-left a {
    color: #0e4b80;
    font-size: 14px;
    text-decoration: none;
}
div#pdf-link {
    margin-top: 12px;
}
div#pdf img {
    width: 32px;
    float: right;
    display: table;
}
.access-title {
    float: right;
}
.access-title p {
   color: #e9711c;
	font-size:14px;
}

.md-post-title {
    padding-bottom: 15px;
    font-size: 25px;
    line-height: 34px;
    letter-spacing: 0.3px;
    display: table;
}
.md-post-author {
    color: #0e4b80;
}
.post-view-thumb {
    float: left;
    margin-right: 23px;
}
.entry-title a {
    color: #0e4b80;
    text-decoration: none;
    margin-bottom: 10px;
    display: table;
}
.category-thumbnail {
    float: left;
    margin-right: 40px;
}
.category-13 header.page-header.alignwide {
    border-bottom: 2px solid;
}
.category-14 header.page-header.alignwide {
    border-bottom: 2px solid;
}
.archive-description p {
    padding-bottom: 16px;
    font-size: 16px;
    text-transform: none;
    font-family: 'PT Sans';
    line-height: 26px;
}
.archive-description {
    padding-bottom: 39px;
    display: table;
}
.home img.vc_single_image-img.attachment-full {
    width: 98% !important;
    margin: 0 auto;
    display: table;
}
.single-main-page {
    font-family: 'PT Sans', sans-serif;
    margin-bottom: 70px;
    display: table;
}
.category-name a {
    color: #0e4b80;
    text-decoration: none;
    font-size: 21px;
}
span.simple-news-categories a:nth-child(2) {
    display: none;
}
:lang(de-DE) a.en-text{
	display:none !important;
}

:lang(de-DE) .category-9 .category-thumbnail {
    display: none;
}

:lang(en-US) a.de-text{
	display:none !important;
}

:lang(de-DE) .en-text{
	display:none !important;
}

:lang(en-US) .de-text{
	display:none !important;
}

:lang(en-US) li#menu-item-577 {
	display:none !important;
}

:lang(de-DE) li#menu-item-17 {
	display:none !important;
}

h2.widgettitle {
    display: none;
}
li#search-2 {
    list-style: none;
}
.site-search label {
    display: none;
}
.site-search {
    display: table;
    float: right;
    margin-bottom: 15px;
}
input#search-form-1 {
    border: 1px solid #ccc;
    padding: 4px 10px;
    color: #000;
}
svg.svg-icon {
    position: relative;
    top: 6px;
}
h2.screen-reader-text {
    display: table;
    margin: 0 auto;
    margin-bottom: 11px;
}
nav.navigation.pagination {
    display: table;
    margin: 0 auto;
    margin-top: 50px;
}
a.page-numbers {
    background: #0e4b80;
    color: #fff;
    padding: 3px 17px;
    text-align: center;
    text-decoration: none;
}
input.search-submit {
    background: #265177;
    color: #fff;
    border: none;
    padding: 5px 9px;
    cursor: pointer;
}

.single-header-left img {
    width: 88px;
}

.single-md-div h2 {
    padding-bottom: 13px;
}
.single-md-div p {
    line-height: 30px;
}
.entry-content a:last-child {
    font-size: 14px;
    font-weight: normal;
}
.entry-content a {
    font-size: 14px;
    font-weight: normal;
}
.jurnuel-title {
    font-size: 18px;
    padding-bottom: 10px;
}
.single-header-right img {
    width: 125px !important;
    height: 125px !important;
}
.single-header-right {
    float: right;
    line-height: 0;
}
.jurnuel-content {
    color: #0e4b80;
}
.archive-posts {
    margin-bottom: 3rem;
}
span.heftausgabe2-teaser a {
    text-decoration: none;
    color: #0e4b80;
    font-size: 0.9rem;
}
.doi-archive-link a {
    color: #0e4b80;
    font-weight: normal;
    font-size: 0.9rem;
    text-decoration: none;
}
.archive-post-author.md-post-author {
    color: #000;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 13px;
}
.archive-post-title a {
    text-decoration: none;
    color: #0e4b80;
    font-size: 1.25rem;
    display: table;
    padding: 13px 0;
}
.category-posts {
    display: table;
    width: 70%;
    margin: 0 auto;
    margin-top: 3rem;
}
span.heftausgabe2 {
    padding-bottom: 14px;
    display: table;
}
li#menu-item-357 .sub-menu {
    right: 29px;
}
span.beitragstitel1 {
    padding-bottom: 0;
    display: table;
}
span.kontakt {
    display: table;
    margin-top: 19px;
}
.wpbibtex-item {
    padding: 15px 0;
}
span.beitragstitel2 {
    display: table;
}
.nav ul {
    padding: 0;
    margin: 0;
}
span.autoren {
    padding-bottom: 16px;
    display: table;
}
.category-name {
    padding-top: 38px;
    display: table;
}
.category-b .category-name {
    display: none;
}
.category-a .category-name {
    display: none;
}
.category-details {
    display: table;
    width: 63%;
    float: left;
    margin-right: 40px;
}
.post-excerpt-detail p {
    font-size: 14px;
    line-height: 25px;
}
.single figure.post-thumbnail {
    display: none;
}

.cite-type {
    float: left;
    color: #0000FF;
    font-weight: bold;
}
.cite-col-1 {
    display: table;
    margin-top: 18px;
    margin-left: 21px;
    font-size: 14px;
}
.cite-output {
    display: table;
    color: #BA2121;
	white-space: pre-line;
}
.cite-title {
    float: left;
    width: 81px;
    color: #7D9029;
}
.cite-equel {
    float: left;
    display: table;
    margin-right: 25px;
}





div.mw-highlight {
    background-color: inherit;
}

.mw-content-ltr {
    direction: ltr;
}
.mw-highlight {
    unicode-bidi: embed;
}

.mw-highlight pre {
    white-space: pre-line;
    -moz-tab-size: 4;
    tab-size: 4;
    position: relative;
}

pre, .mw-code {
    padding: 1em;
    white-space: pre-wrap;
    word-wrap: break-word;
}
pre, code, .mw-code {
    background-color: #f8f9fa;
    color: #000;
    border: 1px solid #eaecf0;
}
pre, code, tt, kbd, samp, .mw-code {
    font-family: monospace,monospace;
}
pre, .mw-code {
    line-height: 1.3;
}
pre, code, tt, kbd, samp {
    font-family: monospace,monospace;
}
pre {
    line-height: 125%;
}
.mw-highlight .nc {
    color: #0000FF;
    font-weight: bold;
}
.mw-highlight .nl {
    color: #A0A000;
}
.mw-highlight .na {
    color: #7D9029;
}
.mw-highlight .s {
    color: #BA2121;
}
.mw-highlight .m {
    color: #666666;
}








button.copy-the-code-button {
    font-size: 0px !important;
}

:lang(en-US) button.copy-the-code-button::before {
    font-size: 16px;
    content: "Copy to clipboard";
}


:lang(de-DE) button.copy-the-code-button::before {
    font-size: 16px;
    content: "Eintrag kopieren";
}


.abstract {
    padding: 20px 0;
}
.single h1.entry-title {
    display: table;
    font-weight: normal;
    font-size: 21px;
}
.single article {
    margin: 0 auto;
    padding-bottom: 15px;
    margin-top: 15px;
    border-bottom: 1px solid #ccc;
    display: table;
    width: 100%;
}
.single .entry-content {
    padding-bottom: 40px;
}
.share-icon {
    margin-top: 19px;
    float: left;
    margin-right: 19px;
}
.single-right-sidebar {
    width: 25%;
    float: right;
    padding-top: 40px;
}
.single-right-sidebar h1.entry-title {
    font-size: 14px;
    padding-bottom: 2px;
}
.jurnuel-right-content {
    padding-bottom: 10px;
}
.jurnuel-right-content {
    padding-bottom: 10px;
    font-size: 13px;
    color: #0e4b80;
}
.single .entry-content {
    padding-bottom: 0px !important;
}
.single-middle-inner {
    padding: 0 50px;
}
.post-readmore a {
    background: #0e4b80;
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    display: table;
    font-size: 13px;
    text-transform: capitalize;
    margin-top: 8px;
}
.post-thumbnail {
    float: left;
    margin-right: 0;
    width: 25%;
}
a.more-link {
    display: none;
}
.archive-post-info {
    margin-bottom: 13px;
}
.post-title a {
    text-decoration: none;
    color: #0e4b80;
    padding-bottom: 12px;
    display: table;
}
ul.sub-menu {
    position: absolute;
	    padding-left: 0;
	line-height: 20px;
    background: #fefefe;
    border: 1px solid #cacaca;
    min-width: 200px;
    display: none;
	flex-direction: column;
	top: 35px
		flex-wrap: nowrap;;
    left: auto;
    z-index: 1;
}
header.page-header.alignwide {
    width: 70%;
    margin: 0 auto;
    padding-top: 33px;
    text-transform: uppercase;
    padding-bottom: 9px;
    color: #0e4b80;
    font-size: 11px;
}
.search .wrapper {
    padding-bottom: 60px;
}
.search-result-count.default-max-width {
    width: 70%;
    margin: 0 auto;
    font-size: 13px;
}
.cite-keyword {
    display: table;
}

.nav li:hover .sub-menu {
    display: table;
}
.nav {
    display: table;
    float: right;
    clear: both;
}
li#menu-item-19:hover .sub-menu {
    right: 30px;
}

.sub-menu li {
    list-style: none;
    float: none;
}
.sub-menu li a {
    padding: 6px 10px;
    font-weight: normal;
    font-size: 0.9rem;
    display: table;
}
.cite-field-col-1 {
    margin-bottom: 20px;
    display: table;
}
.cite-abstract p {
    float: none;
    display: table;
    width: unset !important;
}
.cite-abstract {
    display: table;
}
.cite-author {
    display: table;
}
.text-cite-fields,
.bibtex-cite-fields {
    display: none;
}
.cite-author p {
    float: none;
    display: table;
    width: unset !important;
}
.cite-keyword p {
    float: none;
    display: table;
    width: unset !important;
}
li#wpp-5 {
    list-style: none;
}
li#wpp-2 {
    list-style: none;
}
li#wpp-3 {
    list-style: none;
}
.cite-field-col-1 p {
    float: left;
    padding-right: 20px;
    width: 77px;
    display: table;
}
.cite-fields {
    margin: 0 auto;
    padding-top: 26px;
    box-shadow: 1px 2px 7px 3px #ddd;
    margin-top: 20px;
    padding-left: 27px;
    padding-bottom: 67px;
    padding-right: 27px;
    font-family: monospace,monospace;
}
.copy-the-code-wrap .copy-the-code-target {
    margin-bottom: 37px;
}
.copy-the-code-button {
    background: #0e4b80 !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 10px 30px !important;
    text-transform: unset !important;
}
.copy-the-code-inside-wrap .copy-the-code-button {
    position: absolute;
    right: 0;
    bottom: -45px;
    left: 0;
    margin: 0 auto;
    display: table;
	top:unset;
}
.cite-last-brkt {
    margin-top: 20px;
}
.cite-funtion {
    display: flex;
}
.cite-text-title,
.bibtex-title {
    margin-top: 19px;
}
.cite-text-title {
    margin-left: 10px;
}
.cite-text-title p,
.bibtex-title p {
    background: #265177;
    color: #fff;
    display: table;
    padding: 3px 21px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 10px;
}


footer#colophon {
    background: #0e4b80;
    padding: 30px 0;
    display: table;
    width: 100%;
}

.footer-menu {
    width: 1240px;
    margin: 0 auto;
    display: table;
}

.footer-menu .foo-col-1 {
    float: left;
    width: 33.33%;
}
.footer-menu .foo-col-1 li {
    list-style: none;
}
.footer-menu .foo-col-1 li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-family: "Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
    padding: 8px 0;
    display: table;
}
footer.entry-footer.default-max-width {
    display: none;
}

h1.entry-title {
    display: none;
}
.category-banner img {
    width: 100%;
}


.header-banner .vc_column_container>.vc_column-inner {
    padding-left: 0;
    padding-right: 0;
}
.wpb_text_column.wpb_content_element.title-tab p {
    color: #0e4b80;
    font-size: 1.2rem;
    border-bottom: 1px solid #0e4b80;
    padding-bottom: 11px;
}
.entry-content p {
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    padding-bottom: 12px;
    font-size: 15px;
}
.page-id-26 table tr {
    line-height: 28px;
    background: unset !important;
}
.btn-col-1 a {
    background: #0e4b80 !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 15px 30px !important;
}
.entry-content a {
    color: #0e4b80;
    text-decoration: none;
    font-weight: bold;
}
.wpb_text_column.wpb_content_element.text-col-3 {
    margin-bottom: 13px;
}
table tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f1f1f1;
}
ul {
    padding-left: 30px;
    margin-bottom: 23px;
    line-height: 26px;
    font-size: 15px;
}
table tr td {
    padding: 9px 20px;
	font-size: 15px;
}
.wpb_text_column.wpb_content_element.buch-col-1 {
    margin-bottom: 10px;
}
.text-col-7 .wpb_text_column.wpb_content_element {
    margin-bottom: 9px;
}
.text-col-7.wpb_column.vc_column_container.vc_col-sm-4 {
    border: 1px solid #0e4b80;
    padding: 20px 0;
}

button {
	    background: #0e4b80 !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 15px 30px !important;
}



@media screen and  (max-width: 640px) {
	
	
	
	ul.leftmtop {
    display: none;
}
	ul.leftmbottom {
    display: none;
}
.mobmenu-content {
    margin-top: 0px !important;
	  margin-bottom: 20px !important;
  
}	
	.single-header-left img {
    width: 100%;
}
.single-header-left {
    line-height: 0;
    float: left;
    width: 19%;
}
	.single-right-sidebar {
    width: 100%;
    float: none;
    padding-top: 25px;
}
	.addtoany_list a, .widget .addtoany_list a {
    padding: 0 2px !important;
}
	.md-link-left a {
    font-size: 11px;
}
	.share-icon {
    margin-right: 0px;
}
	.md-post-title {
    font-size: 20px;
    line-height: 27px;
}
	.single-header-right img {
    width: 70px !important;
    height: 89px !important;
}
	.middle-header {
    text-align: center;
    float: left;
    margin: 0 auto;
    display: table;
    padding: 10px 13px;
    width: 46%;
}
.single-left-sidebar {
    float: none;
    width: 100%;
    padding-top: 30px;
}	
	.single-middle-inner {
    padding: 0 0px;
}
	.single-middle-content {
    float: none;
    padding-top: 20px;
    width: 100%;
}
	
	.single-main-page {
    display: block;
}
	.category-post-col-1 {
    padding-bottom: 20px;
    margin-bottom: 20px;
}
	.category-details {
    display: table;
    width: 100%;
    float: none;
    margin-right: 0px;
}
	.category-posts {
    display: table;
    width: 100%;
    margin: 0 auto;
    margin-top: 0rem;
}
	.site-search {
    float: none;
    display: table;
    width: 100%;
}
	
	.bibtex-title {
    width: 100%;
}

.text-cite-fields,
.bibtex-cite-fields {
    width: 88%;
    padding-right: 15px;
}
	.single article {
    width: 99%;
}

	#content .wpb_alert p:last-child, #content .wpb_text_column :last-child, #content .wpb_text_column p:last-child, .wpb_alert p:last-child, .wpb_text_column :last-child, .wpb_text_column p:last-child {
    margin-bottom: 0;
    text-align: left !important;
}
	.vc_btn3-container.vc_btn3-right {
    text-align: left !important;
}

ul.sub-menu {
    display: table !important;
}
	.footer-menu .foo-col-1:nth-child(3n+3) {
    background-image: none;
    background-repeat: no-repeat;
    background-position: 0px 8px;
    padding-left: 6px;
    width: 100%;
}
	.footer-menu .foo-col-1 {
    float: none;
    width: 100%;
}
.footer-menu {
    width: 100%;
}	


}







