/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Author: Eugene Holin
Author URI: https://holin.biz
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 15kb (gzipped) to your page size. We take full advantage of the new block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS and is translated into over 25 languages by our amazing community of users. A few of our many features include microdata integration, 9 widget areas, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover) and navigation color presets. Learn more and check out our powerful premium version at https://generatepress.com
Version: 3.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: generatepress
Text Domain: generatepress
Tags: two-columns, three-columns, one-column, right-sidebar, left-sidebar, footer-widgets, blog, e-commerce, flexible-header, full-width-template, buddypress, custom-header, custom-background, custom-menu, custom-colors, sticky-post, threaded-comments, translation-ready, rtl-language-support, featured-images, theme-options

GeneratePress, Copyright 2014-2019 EDGE22 Studios LTD.
GeneratePress is distributed under the terms of the GNU GPL

GeneratePress is based on Underscores http://underscores.me/, (C) 2012-2019 Automattic, Inc.
*/
#page {
    margin-top: 10px;
}
.site-footer .footer-widgets {
  background: #54544c;
}
.site-footer .widget-title {
  font-size: 1.35em;
  color: #ffffff;
}
.site-footer .page-list-ext-image {
  margin: 0 15px 15px 0;
}
.site-footer h3 {
  font-size: 1em;
}

ul li::marker {
  color: #B18F06;
  font-size: 1.25em;
}

table, th, td {
  border: 1px groove #dadada !important;
  font-size: 13px;
}

h2 > a.heading-link {
  display: none;
}

#anchorlist_wrap {
  float: left;
  min-width: 480px;
  display: block;
  padding: 1rem 1rem 1rem 0;
}

#anchorlist {
  display: none;
}

#anchorlist_wrap > #anchorlist {
  display: block;
}

#page.container {
  padding: 1em 0 1em 0;
}

#generate-section-2 .generate-sections-inside-container {
  padding-top: 10px;
  padding-bottom: 15px;
}

#mobile-logo {
  display: none;
}

@media screen and (max-width: 650px) {
  .prp-page .prp-content .display-lg-block, .prp-page.page .prp-content .display-lg-block {
    display: block !important;
  }

  #mobile-header > .grid-container {
    width: 122vw;
  }

  #mobile-header.toggled > .grid-container {
    width: 100vw;
  }

  #mobile-header.toggled .mobile-header-logo {
    margin-left: 0 !important;
  }

  .main-navigation.toggled .menu-item-has-children .dropdown-menu-toggle {
    float: none !important;
  }

  #mobile-logo {
    display: inline-block;
  }

  #mobile-logo img {
    width: 60px;
    height: 60px;
  }

  .mobile-header-navigation .mobile-header-logo {
    margin-left: 58% !important;
  }

  #mobile-header.toggled .site-logo {
    opacity: 0;
    visibility: hidden;
  }

  table, th, td {
    font-size: 13px !important;
  }

  #page {
    padding: 0em 0 1em 0;
  }

  #generate-section-2 .generate-sections-inside-container {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  #anchorlist_wrap {
    float: none !important;
    min-width: initial !important;
    max-width: 100vw;
    display: block;
    padding: 0;
    margin: 1rem auto;
    font-size: 15px;
  }
}
.heading-primary {
  font-size: 2em;
  padding: 2em;
  text-align: center;
}

.accordion dl,
.accordion-list {
  border: 1px solid #ddd;
}
.accordion dl:after,
.accordion-list:after {
  content: "";
  display: block;
  height: 1em;
  width: 100%;
  background-color: #cba300;
}

.accordion dd,
.accordion__panel {
  background-color: #eee;
  font-size: 1em;
  line-height: 1.5em;
}

.accordion p {
  color: #333;
  padding: 1em 2em 1em 2em;
}

.accordion {
  position: relative;
  background-color: #eee;
}

.accordion a {
  color: #121212 !important;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2em 0 2em 0;
}

.accordionTitle,
.accordion__Heading {
  background-color: #fecc00;
  text-align: center;
  font-weight: 700;
  padding: 1em;
  display: block;
  text-decoration: none;
  color: #000;
  transition: background-color 0.5s ease-in-out;
  border-bottom: 1px solid #e5b800;
}
.accordionTitle:before,
.accordion__Heading:before {
  content: "+";
  font-size: 1.5em;
  line-height: 0.5em;
  float: left;
  transition: transform 0.3s ease-in-out;
}
.accordionTitle:hover,
.accordion__Heading:hover {
  background-color: #cba300;
}

.accordionTitleActive,
.accordionTitle.is-expanded {
  background-color: #cba300;
}
.accordionTitleActive:before,
.accordionTitle.is-expanded:before {
  transform: rotate(-225deg);
}

.accordionItem {
  height: auto;
  overflow: hidden;
  max-height: 50em;
  transition: max-height 1s;
}
@media screen and (min-width: 48em) {
  .accordionItem {
    max-height: 15em;
    transition: max-height 0.5s;
  }
}

.accordionItem.is-collapsed {
  max-height: 0;
}

.no-js .accordionItem.is-collapsed {
  max-height: auto;
}

.animateIn {
  animation: accordionIn 0.45s normal ease-in-out both 1;
}

.animateOut {
  animation: accordionOut 0.45s alternate ease-in-out both 1;
}

@keyframes accordionIn {
  0% {
    opacity: 0;
    transform: scale(0.9) rotateX(-60deg);
    transform-origin: 50% 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes accordionOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9) rotateX(-60deg);
  }
}
/*
a.heading-link {
    position: absolute;
    left: -15px;
}


h1 a.heading-link,h2 a.heading-link,h3 a.heading-link,h4 a.heading-link,h5 a.heading-link,h6 a.heading-link {
    opacity: 0;
    position: absolute;
    left: -15px
}

h1:hover a.heading-link,h2:hover a.heading-link,h3:hover a.heading-link,h4:hover a.heading-link,h5:hover a.heading-link,h6:hover a.heading-link {
    opacity: 1
}


*/

/*# sourceMappingURL=style.css.map */
