/*****************************************************************************************************
* Default CSS
******************************************************************************************************/

/*
Resets
---------------------------------------------------------------------------------------------------- */

/* Baseline Normalize
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{box-sizing:content-box;height:0}mark{background:#ff0;color:#222}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}


/* Root
--------------------------------------------- */

html {
  scroll-behavior: smooth;
}


/* Admin Bar
--------------------------------------------- */

/* Identify Development or Prototype Site (Basicbuch) */

.bub-devsite #wpadminbar {
  background: orange !important;
}

.bub-prototype #wpadminbar {
  background: var(--demo1-background-def);
}

/* Avatar */

#wpadminbar img {
  min-width: 0;
}

/* Account for Fixed Header */

/*.admin-bar .site-container {
  margin-top: 32px;
}

@media screen and (max-width: 782px) {
  
  .admin-bar .site-container {
    margin-top: 46px;
  }
}

@media screen and (max-width: 600px) {

  #wpadminbar {
    position: fixed;
      left: 0;
      top: 0;
  }
}*/


/* Box Sizing
--------------------------------------------- */

*,
input[type="search"] {
  box-sizing: border-box;
}


/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry-content::before,
.entry::before,
.featured-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.wrap::before {
  content: " ";
  display: table;
}

.author-box::after,
.clearfix::after,
.entry-content::after,
.entry::after,
.featured-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.wrap::after {
  clear: both;
  content: " ";
  display: table;
}


/* Mobile Devices
--------------------------------------------- */

/* Remove Tap Highlight */
 
* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Remove iOS Rounded Corners and Other Annoyances */
 
input[type=search] {
  -webkit-appearance: none !important;
}


/*
Accessibility
---------------------------------------------------------------------------------------------------- */

/* Focus Ring
--------------------------------------------- */

/* Subtle focus style for keyboard-input elements */

.text-input:focus {
  outline: 1px solid #aaa;
}

/* No focus style for non-keyboard-input elements */

button:focus,
select:focus,
a:focus,
[tabindex="0"]:focus {
  outline: none;
}

/* Strong focus style on tab key use */

body.tabbing *:focus {
  outline: 2px solid #4D90FE !important;
  outline-offset: -3px;
  transition: none !important;
}


/* Screen Reader Text
--------------------------------------------- */

.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.genesis-nav-menu .search input[type="submit"]:focus,
.widget_search input[type="submit"]:focus  {
  clip: auto !important;
  height: auto;
  width: auto;
  display: block;
  font-size: 1em;
  font-weight: bold;
  padding: 15px 23px 14px;
  color: var(--cl-base-def);
  background: var(--bg-base-def);
  z-index: 100000; /* Above WP toolbar. */
  text-decoration: none;
  box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
}

.more-link {
  position: relative;
}


/* Skip Links
--------------------------------------------- */

.genesis-skip-link {
  margin: 0;
}

.genesis-skip-link li {
  height: 0;
  width: 0;
  list-style: none;
}


/*
Mixed
---------------------------------------------------------------------------------------------------- */

/* Content Fade-in on Page Load
--------------------------------------------- */

/* Fade-in page content when javascript is loaded. */
 
.no-js .site-inner {
  opacity: 0;
}

.js .site-inner,
.js .site-footer {
  animation: pageLoadFadeIn 400ms linear forwards; 
}

@keyframes pageLoadFadeIn {
    0% { opacity: 0; }
   50% { opacity: 0; }
  100% { opacity: 1; }
}


/* Hiding Stuff 
--------------------------------------------- */

/* No Public Blog Posts Yet */

.bub-no-public-blog-posts .menu-item.blog {
  display: none;
}


/* Google reCaptcha
--------------------------------------------- */

.grecaptcha-badge {
  visibility: hidden;
}