@charset "UTF-8";

/* stylelint-disable selector-list-comma-newline-after */

/**
 * @file
 * Mixin definitions
 * based on: https://css-tricks.com/abem-useful-adaptation-bem
 */

/**
 * aBEM styled block definition
 *
 * example  : .block  {...}
 */

/**
 * aBEM styled element definition
 *
 * example  : .block__element  {...}
 */

/**
 * aBEM styled modifier definition for blocks and elements
 *
 * use case : block or element with modifier 
 * example  : .block.-themeCustom  {...}
 * example  : .block__element.-themeCustom  {...}
 */

/**
 * aBEM styled context sensitive modifier definition
 * https://css-tricks.com/abem-useful-adaptation-bem/#article-header-id-16
 *
 * use case : block or element inside modifier 
 * example  : .-themeCustom .block {...}
 * example  : .-themeCustom .block__element {...}
 */

/**
 * BEM styled hover pseudo class definition
 */

/**
 * @file
 * This file contains generalized css definitions and classes for further use
 */

/**
 * Stack order for modals.
 * Usage: @extend %modal;
 */

/**
 * Helper class for centering block elements.
 * Usage: @extend %center;
 */

/**
 * Simple background overlay helper class.
 * Add background color and opacity if needed.
 * Usage: @extend %background-overlay;
 */

/**
 * Szechenyi 2020 fixed logo.
 * Usage: @extend %sz2020;
 */

/**
 * Menu item bullet.
 * Usage: @extend %menu-bullet;
 */

.l-page__item.-pageFooter .arrow-menu .nav-item .nav-link::before {
  font-family: "Font Awesome 5 Free";
  content: "\F105";
  font-weight: 800;
}

/**
 * Menu item bullet.
 * Usage: @extend %menu-bullet;
 */

.awdr-bulk-customizable-table table {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  border-collapse: collapse;
  border-spacing: 0;
  display: flex;
  overflow: hidden;
  background: none;
}

.awdr-bulk-customizable-table table thead {
  display: flex;
  flex-shrink: 0;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
}

.awdr-bulk-customizable-table table tbody,
.awdr-bulk-customizable-table table thead {
  display: flex;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}

.awdr-bulk-customizable-table table tbody tr,
.awdr-bulk-customizable-table table thead tr {
  display: flex;
  flex-direction: column;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  flex-shrink: 0;
}

.awdr-bulk-customizable-table table tbody tr td,
.awdr-bulk-customizable-table table tbody tr th,
.awdr-bulk-customizable-table table thead tr td,
.awdr-bulk-customizable-table table thead tr th {
  display: block;
}

/**
 * @file
 * Mixin definitions

 @mixin navigation-bullet-menu($font-size:1, $arrow-size:.9)
 @mixin navigation-detailed-menu($font-size:1, $arrow-size:.9)
 @mixin menu-animation()

 */

/*
SETTINGS
*/

:root {
  --textUnderlinedLineHeight: 3px;
  --textUnderlinedLineColor: rgba(195,159,70,1);
  --rLinkColor: rgba(195,159,70,1);
}

@media (min-width: 992px) {
  .-navbarTheme .-effectMenuPG .navbar-nav > .nav-item > .nav-link {
    --uiTextUnderlinedLineHeight: var(--textUnderlinedLineHeight, 3px);
    /* 1 */
    --uiTextUnderlinedPaddingBottom: calc(var(--uiTextUnderlinedLineHeight) + var(--uiTextUnderlinedLineGap));
    --textUnderlinedLineColor: rgba(195,159,70,1);
    --rLinkColor: rgba(195,159,70,1);
    position: var(--textUnderlinedPosition, relative) !important;
    overflow: hidden;
    display: var(--rLinkDisplay, inline-flex) !important;
  }

  .-navbarTheme .-effectMenuPG .navbar-nav > .nav-item > .nav-link::after {
    content: "";
    width: var(--textUnderlinedLineWidht, 100%) !important;
    height: var(--uiTextUnderlinedLineHeight) !important;
    background-color: var(--textUnderlinedLineColor, currentColor) !important;
    position: absolute;
    left: var(--textUnderlinedLineLeft, 0) !important;
    bottom: var(--textUnderlinedLineBottom, 0) !important;
  }

  .-navbarTheme .-effectMenuPG .navbar-nav > .nav-item > .nav-link::after {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }

  .-navbarTheme .-effectMenuPG .navbar-nav > .nav-item > .nav-link:hover::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .-navbarTheme .-effectMenuPG .navbar-nav > .nav-item > .nav-link[href] {
    color: var(--rLinkColor) !important;
    -webkit-text-decoration: var(--rLinkTextDecoration, none) !important;
            text-decoration: var(--rLinkTextDecoration, none) !important;
  }
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 2s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

/**
 * Progressive button styles.
 * Usage:

 */

/**
* Helper class for centering block elements.
* Usage: @extend %center;
*/

.o-jumbotron.-themeHeroHead .m-button.-themePGinv,
.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-view-cart a,
.m-button.-themeInvPG,
.btn-outline-primary,
.o-navbar.-navbarTheme .m-button.-themeAVE,
.m-button.-themeAVE,
.o-jumbotron.-theme2col .frm_style_formidable-style.with_frm_style .frm_button_submit,
.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-checkout a,
.m-button.-themePG,
.btn-primary,
.wp-block-button__link {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.o-jumbotron.-theme2col .frm_style_formidable-style.with_frm_style .frm_button_submit,
.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-checkout a,
.m-button.-themePG,
.btn-primary,
.wp-block-button__link {
  background-color: var(--primary);
  color: #fff;
  border: #c39f46 1px solid;
}

.o-jumbotron.-theme2col .frm_style_formidable-style.with_frm_style .frm_button_submit:hover,
.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-checkout a:hover,
.m-button.-themePG:hover,
.btn-primary:hover,
.wp-block-button__link:hover,
.o-jumbotron.-theme2col .frm_style_formidable-style.with_frm_style .frm_button_submit:focus,
.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-checkout a:focus,
.m-button.-themePG:focus,
.btn-primary:focus,
.wp-block-button__link:focus,
.o-jumbotron.-theme2col .frm_style_formidable-style.with_frm_style .frm_button_submit:active,
.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-checkout a:active,
.m-button.-themePG:active,
.btn-primary:active,
.wp-block-button__link:active {
  color: #c39f46;
  background-color: #fff;
  border: #c39f46 1px solid;
}

.m-button.-themeAVE {
  color: #fff;
  background-color: #788264;
  border-color: #788264;
  color: #fff;
  border: #788264 1px solid;
}

.m-button.-themeAVE:hover {
  color: #212529;
  background-color: #fff;
  border-color: #788264;
}

.m-button.-themeAVE:focus,
.focus.m-button.-themeAVE {
  color: #212529;
  background-color: #fff;
  border-color: #788264;
  box-shadow: 0 0 0 0.2rem rgba(140, 149, 123, 0.5);
}

.disabled.m-button.-themeAVE,
.m-button.-themeAVE:disabled {
  color: #fff;
  background-color: #788264;
  border-color: #788264;
}

.m-button.-themeAVE:not(:disabled):not(.disabled):active,
.m-button.-themeAVE:not(:disabled):not(.disabled).active,
.show > .dropdown-toggle.m-button.-themeAVE {
  color: #fff;
  background-color: #788264;
  border-color: #788264;
}

.m-button.-themeAVE:not(:disabled):not(.disabled):active:focus,
.m-button.-themeAVE:not(:disabled):not(.disabled).active:focus,
.show > .dropdown-toggle.m-button.-themeAVE:focus {
  box-shadow: 0 0 0 0.2rem rgba(140, 149, 123, 0.5);
}

.m-button.-themeAVE:hover,
.m-button.-themeAVE:focus,
.m-button.-themeAVE:active {
  color: #788264;
  background-color: #fff;
  border: #788264 1px solid;
}

.o-navbar.-navbarTheme .m-button.-themeAVE {
  color: #fff;
  background-color: #00c21d;
  border-color: #00c21d;
  color: #fff;
  border: #00c21d 1px solid;
}

.o-navbar.-navbarTheme .m-button.-themeAVE:hover {
  color: #212529;
  background-color: #fff;
  border-color: #00c21d;
}

.o-navbar.-navbarTheme .m-button.-themeAVE:focus,
.o-navbar.-navbarTheme .focus.m-button.-themeAVE {
  color: #212529;
  background-color: #fff;
  border-color: #00c21d;
  box-shadow: 0 0 0 0.2rem rgba(38, 203, 63, 0.5);
}

.o-navbar.-navbarTheme .disabled.m-button.-themeAVE,
.o-navbar.-navbarTheme .m-button.-themeAVE:disabled {
  color: #fff;
  background-color: #00c21d;
  border-color: #00c21d;
}

.o-navbar.-navbarTheme .m-button.-themeAVE:not(:disabled):not(.disabled):active,
.o-navbar.-navbarTheme .m-button.-themeAVE:not(:disabled):not(.disabled).active,
.o-navbar.-navbarTheme .show > .dropdown-toggle.m-button.-themeAVE {
  color: #fff;
  background-color: #00c21d;
  border-color: #00c21d;
}

.o-navbar.-navbarTheme .m-button.-themeAVE:not(:disabled):not(.disabled):active:focus,
.o-navbar.-navbarTheme .m-button.-themeAVE:not(:disabled):not(.disabled).active:focus,
.o-navbar.-navbarTheme .show > .dropdown-toggle.m-button.-themeAVE:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 203, 63, 0.5);
}

.o-navbar.-navbarTheme .m-button.-themeAVE:hover,
.o-navbar.-navbarTheme .m-button.-themeAVE:focus,
.o-navbar.-navbarTheme .m-button.-themeAVE:active {
  color: #00c21d;
  background-color: #fff;
  border: #00c21d 1px solid;
}

.o-jumbotron.-themeHeroHead .m-button.-themePGinv,
.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-view-cart a,
.m-button.-themeInvPG,
.btn-outline-primary {
  color: #c39f46;
  border: #c39f46 1px solid;
}

.o-jumbotron.-themeHeroHead .m-button.-themePGinv:hover,
.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-view-cart a:hover,
.m-button.-themeInvPG:hover,
.btn-outline-primary:hover,
.o-jumbotron.-themeHeroHead .m-button.-themePGinv:focus,
.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-view-cart a:focus,
.m-button.-themeInvPG:focus,
.btn-outline-primary:focus,
.o-jumbotron.-themeHeroHead .m-button.-themePGinv:active,
.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-view-cart a:active,
.m-button.-themeInvPG:active,
.btn-outline-primary:active {
  color: #fff;
  background-color: #c39f46;
  border: #fff 1px solid;
}

.m-button.-themePG {
  border-radius: 10px;
  margin-top: 0;
  border: #c39f46 1px solid;
}

@media (min-width: 768px) {
  .m-button.-themePG {
    border-radius: 10px;
    border: #c39f46 1px solid;
  }

  .m-button.-themePG:hover,
  .m-button.-themePG:focus,
  .m-button.-themePG:active {
    color: #c39f46;
    background-color: #fff;
    border: #c39f46 1px solid;
  }
}

@media (max-width: 991.98px) {
  .m-button.-themePG {
    display: block;
  }
}

.m-button.-themeAVE {
  border-radius: 10px;
  margin-top: 0;
  border: #788264 1px solid;
}

@media (min-width: 768px) {
  .m-button.-themeAVE {
    border-radius: 10px;
    border: #788264 1px solid;
  }

  .m-button.-themeAVE:hover,
  .m-button.-themeAVE:focus,
  .m-button.-themeAVE:active {
    color: #788264;
    background-color: #fff;
    border: #788264 1px solid;
  }
}

@media (max-width: 991.98px) {
  .m-button.-themeAVE {
    display: block;
  }
}

.m-button.-themeInvPG {
  margin-top: 0;
}

@media (max-width: 991.98px) {
  .m-button.-themeInvPG {
    display: block;
  }
}

/**
 * Progressive navbar.
 * Usage:

 */

/*!
 * Yamm! - Yet another megamenu for Bootstrap
 * http://geedmo.github.com/yamm
 *
 * @geedmo - Licensed under the MIT license
 */

.yamm .collapse,
.yamm .dropup,
.yamm .dropdown {
  position: static;
}

.yamm .container {
  position: relative;
}

.yamm .dropdown-menu {
  left: auto;
}

.yamm .yamm-content {
  padding: 1rem;
}

.yamm .dropdown.yamm-fw .dropdown-menu,
.yamm .dropup.yamm-fw .dropdown-menu {
  left: 0;
  right: 0;
}

/**
 * @file
 * Bootstrap navbar style definition
 */

/**
 * Organic item: o-navbar
 * Modifiers: 
 *  -themeNavbar  
 * Usage: o-navbar [Modifiers]
 */

.o-navbar {
  background-color: #fff;
  z-index: 1030;
  padding-top: 0;
  padding-bottom: 0;
}

.o-navbar__inner {
  position: relative;
}

.o-navbar__brand {
  padding-top: 0;
  padding-bottom: 0;
}

.o-navbar__header {
  transition: all 0.3s ease-out;
  padding: 1rem 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .o-navbar__header {
    transition: none;
  }
}

.o-navbar__header .-logo {
  transition: all 0.3s ease-out;
  max-height: 20em;
}

@media (prefers-reduced-motion: reduce) {
  .o-navbar__header .-logo {
    transition: none;
  }
}

.is-sticky .o-navbar__header {
  transition: all 0.3s ease-out;
  padding: 1rem 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .is-sticky .o-navbar__header {
    transition: none;
  }
}

.is-sticky .o-navbar__header .-logo {
  transition: all 0.3s ease-out;
  max-height: 2em;
}

@media (prefers-reduced-motion: reduce) {
  .is-sticky .o-navbar__header .-logo {
    transition: none;
  }
}

.o-navbar__header.-brandLine {
  background: #ddd;
}

.o-navbar .js-switch-direction.dropup,
.o-navbar .js-switch-direction.dropdown {
  position: initial;
}

.o-navbar .navbar {
  padding-top: 0;
  padding-bottom: 0;
}

.o-navbar .navbar-toggler {
  outline: 0;
}

.o-navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.o-navbar .navbar-brand img {
  max-height: 1.875rem;
}

@media (min-width: 992px) {
  .-navbarTheme .o-navbar__item nav,
  .-navbarTheme .o-navbar__item .navbar-nav {
    float: left;
  }
}

@media (max-width: 991.98px) {
  .-navbarTheme .o-navbar__item nav,
  .-navbarTheme .o-navbar__item .navbar-nav {
    float: none;
  }

  .-navbarTheme .o-navbar__item nav .nav-item,
  .-navbarTheme .o-navbar__item .navbar-nav .nav-item {
    width: 100%;
  }
}

.o-navbar.-navbarTheme {
  background-color: #fff;
  /* Fixes dropdown menus placed on the right side */
}

.o-navbar.-navbarTheme .-navbarBrand {
  padding-right: 15px;
}

@media (max-width: 991.98px) {
  .o-navbar.-navbarTheme .navbar-collapse {
    overflow: auto;
  }
}

.o-navbar.-navbarTheme .navbar-nav > .nav-item > .nav-link {
  color: #c39f46;
  outline: 0;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 18px;
}

.o-navbar.-navbarTheme .navbar-nav > .nav-item > .nav-link.disabled {
  color: #9ba5ae;
}

.o-navbar.-navbarTheme .-navbarRight {
  margin-left: auto !important;
}

.o-navbar.-navbarTheme .-navbarRight .dropdown-menu {
  left: auto;
  right: 0px;
}

.o-navbar.-navbarTheme .dropdown-menu {
  background-color: #fff;
  border-radius: 0;
}

.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .nav-link,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .nav-link {
  color: #212529;
  padding: 0.5rem 1rem;
  outline: 0;
  text-decoration: none;
}

.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .nav-link:hover,
.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .nav-link:focus,
.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .nav-link:active,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .nav-link:hover,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .nav-link:focus,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .nav-link:active {
  color: #212529;
  background-color: #c39f46;
}

.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .nav-link.disabled,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .nav-link.disabled {
  color: #9ba5ae;
}

.o-navbar.-navbarTheme {
  padding: 0.5rem 0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.13);
  background-color: var(--white);
  height: 77px;
}

.o-navbar.-navbarTheme .-navbarBrand .-logo {
  padding-top: 0.5rem;
}

.o-navbar.-navbarTheme .-navbarBrandMobile .-brand {
  width: 127px;
}

.o-navbar.-navbarTheme .-navbarBrandMobile .-badge {
  width: 92px;
}

.o-navbar.-navbarTheme .navbar-nav > .nav-item:last-child {
  padding-right: 0;
}

.o-navbar.-navbarTheme .navbar-nav > .nav-item > .nav-link {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  color: var(--primary);
  margin: 0 0.5rem;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
  outline: 0;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 18px;
}

.o-navbar.-navbarTheme .navbar-toggler .toggler-icon span {
  background-color: var(--primary);
}

.o-navbar.-navbarTheme .dropdown-menu {
  background-color: #fff;
  margin: 0;
  border-radius: 0;
}

.o-navbar.-navbarTheme .dropdown-menu .dropdown-item:last-child,
.o-navbar.-navbarTheme .dropdown-menu .nav-item:last-child {
  padding-right: 0;
}

.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .nav-link,
.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .dropdown-item,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .nav-link,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .dropdown-item {
  color: #212529;
  padding: 0.5rem 1rem;
  outline: 0;
  text-decoration: none;
}

.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .nav-link:hover,
.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .nav-link:focus,
.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .nav-link:active,
.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .dropdown-item:hover,
.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .dropdown-item:focus,
.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .dropdown-item:active,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .nav-link:hover,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .nav-link:focus,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .nav-link:active,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .dropdown-item:hover,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .dropdown-item:focus,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .dropdown-item:active {
  color: var(--white);
  background-color: var(--primary);
}

.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .nav-link.disabled,
.o-navbar.-navbarTheme .dropdown-menu .dropdown-item .dropdown-item.disabled,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .nav-link.disabled,
.o-navbar.-navbarTheme .dropdown-menu .nav-item .dropdown-item.disabled {
  color: #9ba5ae;
}

@media (max-width: 991.98px) {
  .o-navbar.-navbarTheme {
    padding: 5px 0;
  }

  .o-navbar.-navbarTheme .dropdown-toggle::after {
    border: none;
    font-family: "Font Awesome 5 Free";
    content: "\F107" !important;
    font-weight: 800;
    vertical-align: 0;
    font-size: 20px;
    float: right;
  }

  .o-navbar.-navbarTheme .navbar-nav > .nav-item > .nav-link {
    padding: 0 2rem;
    margin: 0;
    border-bottom: 1px solid rgba(102, 102, 102, 0.5);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 0em;
    text-align: left;
    color: #666666;
  }

  .o-navbar.-navbarTheme .navbar-nav > .nav-item > .nav-link.dropdown-toggle::after {
    border: none;
    font-family: "Font Awesome 5 Free";
    content: "\F107" !important;
    font-weight: 800;
    vertical-align: 0;
    font-size: 20px;
    float: right;
  }

  .o-navbar.-navbarTheme .navbar-nav > .nav-item > .nav-link:hover,
  .o-navbar.-navbarTheme .navbar-nav > .nav-item > .nav-link:focus,
  .o-navbar.-navbarTheme .navbar-nav > .nav-item > .nav-link:active {
    color: var(--primary);
    font-weight: 800;
    background-color: #fff;
    border-bottom: 1px solid rgba(102, 102, 102, 0.5);
  }
}

.o-navbar.-navbarTheme .a-badge {
  border-radius: 10px;
  color: var(--white);
}

.o-navbar.-navbarTheme .m-button.-themePG {
  color: #212529;
  background-color: #c39f46;
  border-color: #c39f46;
  color: var(--white);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  display: block;
  border-radius: 0;
  margin-top: 0;
  border-bottom: #c39f46 1px solid;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.o-navbar.-navbarTheme .m-button.-themePG:hover {
  color: #212529;
  background-color: #fff;
  border-color: #c39f46;
}

.o-navbar.-navbarTheme .m-button.-themePG:focus,
.o-navbar.-navbarTheme .m-button.-themePG.focus {
  color: #212529;
  background-color: #fff;
  border-color: #c39f46;
  box-shadow: 0 0 0 0.2rem rgba(171, 141, 66, 0.5);
}

.o-navbar.-navbarTheme .m-button.-themePG.disabled,
.o-navbar.-navbarTheme .m-button.-themePG:disabled {
  color: #212529;
  background-color: #c39f46;
  border-color: #c39f46;
}

.o-navbar.-navbarTheme .m-button.-themePG:not(:disabled):not(.disabled):active,
.o-navbar.-navbarTheme .m-button.-themePG:not(:disabled):not(.disabled).active,
.show > .o-navbar.-navbarTheme .m-button.-themePG.dropdown-toggle {
  color: #212529;
  background-color: #c39f46;
  border-color: #c39f46;
}

.o-navbar.-navbarTheme .m-button.-themePG:not(:disabled):not(.disabled):active:focus,
.o-navbar.-navbarTheme .m-button.-themePG:not(:disabled):not(.disabled).active:focus,
.show > .o-navbar.-navbarTheme .m-button.-themePG.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(171, 141, 66, 0.5);
}

.o-navbar.-navbarTheme .m-button.-themePG:hover,
.o-navbar.-navbarTheme .m-button.-themePG:focus,
.o-navbar.-navbarTheme .m-button.-themePG:active {
  color: var(--primary);
  background-color: var(--white);
  border-bottom: var(--primary) 1px solid;
}

@media (min-width: 768px) {
  .o-navbar.-navbarTheme .m-button.-themePG {
    display: inline-block;
    border-radius: 10px;
    margin: 0 5px;
    border: var(--primary) 1px solid;
  }

  .o-navbar.-navbarTheme .m-button.-themePG:hover,
  .o-navbar.-navbarTheme .m-button.-themePG:focus,
  .o-navbar.-navbarTheme .m-button.-themePG:active {
    color: var(--primary);
    background-color: var(--white);
    border: var(--primary) 1px solid;
  }
}

.o-navbar.-navbarTheme .m-button.-themeAVE {
  padding: 15px;
  display: block;
  margin-top: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .o-navbar.-navbarTheme .m-button.-themeAVE {
    display: inline-block;
    margin: 0 5px;
  }
}

.o-navbar.-navbarTheme .m-button.-themePGinv {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
  color: var(--primary);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  display: block;
  border-radius: 0;
  margin-top: 0;
  border-bottom: var(--primary) 1px solid;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.o-navbar.-navbarTheme .m-button.-themePGinv:hover {
  color: #212529;
  background-color: #c39f46;
  border-color: #fff;
}

.o-navbar.-navbarTheme .m-button.-themePGinv:focus,
.o-navbar.-navbarTheme .m-button.-themePGinv.focus {
  color: #212529;
  background-color: #c39f46;
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}

.o-navbar.-navbarTheme .m-button.-themePGinv.disabled,
.o-navbar.-navbarTheme .m-button.-themePGinv:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.o-navbar.-navbarTheme .m-button.-themePGinv:not(:disabled):not(.disabled):active,
.o-navbar.-navbarTheme .m-button.-themePGinv:not(:disabled):not(.disabled).active,
.show > .o-navbar.-navbarTheme .m-button.-themePGinv.dropdown-toggle {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.o-navbar.-navbarTheme .m-button.-themePGinv:not(:disabled):not(.disabled):active:focus,
.o-navbar.-navbarTheme .m-button.-themePGinv:not(:disabled):not(.disabled).active:focus,
.show > .o-navbar.-navbarTheme .m-button.-themePGinv.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}

.o-navbar.-navbarTheme .m-button.-themePGinv:hover,
.o-navbar.-navbarTheme .m-button.-themePGinv:focus,
.o-navbar.-navbarTheme .m-button.-themePGinv:active {
  color: var(--white);
  background-color: var(--primary);
  border-bottom: var(--primary) 1px solid;
}

@media (min-width: 768px) {
  .o-navbar.-navbarTheme .m-button.-themePGinv {
    display: inline-block;
    border-radius: 10px;
    margin: 0 5px;
    border: var(--primary) 1px solid;
  }

  .o-navbar.-navbarTheme .m-button.-themePGinv:hover,
  .o-navbar.-navbarTheme .m-button.-themePGinv:focus,
  .o-navbar.-navbarTheme .m-button.-themePGinv:active {
    color: var(--white);
    background-color: var(--primary);
    border: var(--primary) 1px solid;
  }
}

@media (min-width: 768px) {
  .-navbarTheme .o-navbar__item.order-2 .nav-item > .nav-link,
  .-navbarTheme .o-navbar__item.order-3 .nav-item > .nav-link {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

.-navbarTheme .-yamm {
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  margin-right: auto;
  margin-left: auto;
}

.-navbarTheme .-yamm h2 {
  display: block;
  color: var(--primary);
  text-transform: uppercase;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5rem;
}

.-navbarTheme .-yamm .arrow-menu li p,
.-navbarTheme .-yamm .menu li p {
  border-left: 1px solid #E5E5E5;
  margin-left: 2rem;
  padding-left: 0.5rem;
}

.-navbarTheme .-yamm .dropdown-menu,
.-navbarTheme .-yamm .open .dropdown-menu {
  border-radius: 0;
  padding: 5px 0;
  min-width: 260px;
  list-style: outside none none;
}

.-navbarTheme .-yamm .dropdown-menu li,
.-navbarTheme .-yamm .open .dropdown-menu li {
  background-color: transparent !important;
}

.-navbarTheme .-yamm .o-yamm__content {
  padding: 1.5rem 1.5rem;
}

.-navbarTheme .-yamm .o-yamm__content > ul {
  padding-bottom: 15px;
}

.-navbarTheme .-yamm .o-yamm__content .view-commerce-user-orders .views-field-order-number a {
  font-weight: 800;
}

.-navbarTheme .-yamm .o-yamm__content .bean-content {
  padding: 10px 0 30px;
}

.-navbarTheme .-yamm .o-yamm__content .cart-contents {
  /** { font-size: 12px !important;}*/
}

.-navbarTheme .-yamm .o-yamm__content .cart-contents .line-item-summary,
.-navbarTheme .-yamm .o-yamm__content .cart-contents .node,
.-navbarTheme .-yamm .o-yamm__content .cart-contents .view {
  margin-bottom: 0;
}

.-navbarTheme .-yamm .o-yamm__content .links {
  margin-top: 1rem;
}

.-navbarTheme .-yamm .o-yamm__content .links li {
  background-color: transparent !important;
}

.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-view-cart {
  display: inline-block;
}

.-navbarTheme .-yamm .o-yamm__content .links li.line-item-summary-checkout {
  display: inline-block;
}

.-navbarTheme .-yamm .o-yamm__content .form-search .input-group-btn {
  margin-left: 1rem;
}

.-navbarTheme .-yamm .o-yamm__content .form-control {
  height: auto;
}

.-yamm .dropdown-menu {
  border: 0;
}

@media (min-width: 768px) {
  .-yamm .dropdown-menu {
    border-top: 1px solid #E5E5E5;
    margin: 0;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.13);
    background: linear-gradient(180deg, #FFFFFF 65.62%, #F4F4F4 100%);
  }
}

.-yamm .yamm-content {
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  margin-right: auto;
  margin-left: auto;
  align-items: normal;
}

.-yamm .yamm-content .widget {
  list-style: none;
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
}

@media (min-width: 576px) {
  .-yamm .yamm-content .widget {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .-yamm .yamm-content .widget {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/**
 * Progressive header.
 * Usage:
      <div class="m-header -decor">
        <div class="row justify-content-center align-items-center">
          <div class="m-header__decor"></div>
          <h2 class="m-header__content"></h2>
          <div class="m-header__decor"></div>
        </div>
      </div>
 */

.m-header.-decor {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .m-header.-decor {
    width: 100%;
    padding-right: 7.5px;
    padding-left: 7.5px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

.m-header.-decor .m-header__content {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4rem;
  letter-spacing: 0em;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

@media (min-width: 992px) {
  .m-header.-decor .m-header__content {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    font-size: 24px;
    line-height: 1.8rem;
  }
}

.m-header.-decor .m-header__decor {
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
  content: "";
  border-bottom: 1px solid #c39f46;
  width: 100%;
  height: 50%;
}

/**
 * Progressive landing HERO.
 * Usage:

 */

.o-jumbotron.-themeHero {
  padding-top: 65px;
  padding-bottom: 65px;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeHero {
    padding-bottom: 0;
  }
}

.o-jumbotron.-themeHero .a-text {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 40px;
  color: #666666;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeHero .a-text {
    font-size: 12px;
  }
}

.o-jumbotron.-themeHero .a-header {
  text-transform: uppercase;
  font-family: "Open Sans";
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1em;
  letter-spacing: 0em;
  text-align: left;
}

.o-jumbotron.-themeHero .a-header span {
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeHero .a-header {
    font-size: 24px;
    line-height: 1.1em;
  }
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeHero .o-jumbotron__image {
    padding: 1.5rem 0;
  }
}

.o-jumbotron.-themeHero .m-button.-themePG {
  display: block;
}

.o-jumbotron.-themeHero .m-button.-themeAVE {
  display: block;
}

.o-jumbotron.-themeHero .img-din {
  position: relative;
}

.o-jumbotron.-themeHero .item {
  position: absolute;
  transform: none;
  transition: 0.1s transform;
}

.o-jumbotron.-themeHero .item:nth-child(1) {
  top: -20px;
  left: 100px;
}

.o-jumbotron.-themeHero .item:nth-child(2) {
  top: 0;
  left: 60px;
}

.o-jumbotron.-themeHero .item:nth-child(3) {
  top: 0;
  left: 0;
}

.o-jumbotron.-themeHero .item:nth-child(4) {
  top: 70px;
  left: 325px;
}

.o-jumbotron.-themeHero .item:nth-child(5) {
  top: 70px;
  left: -50px;
}

.o-jumbotron.-themeHero .item:nth-child(6) {
  top: -30px;
  left: 150px;
}

/**
 * Progressive landing HERO.
 * Usage:

 */

@media (max-width: 991.98px) {
  #carouselHERO .carousel-indicators {
    bottom: -40px;
  }
}

.l-page__item.-pageCover {
  background-color: #ffffff;
}

.o-jumbotron.-imgCahexia {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: none;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-imgCahexia {
    padding-bottom: 0;
    height: auto !important;
  }
}

@media (min-width: 768px) {
  .o-jumbotron.-imgCahexia {
    background-image: url("/wp-content/assets/pg_landing/avemar_hero_ffi_fekvo.jpg");
  }
}

.o-jumbotron.-imgMerjen {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("/wp-content/assets/pg_landing/avemar_hero_kendos_allo.jpg");
}

@media (min-width: 768px) {
  .o-jumbotron.-imgMerjen {
    background-image: url("/wp-content/assets/pg_landing/avemar_hero_kendos_fekvo.jpg");
  }
}

.o-jumbotron.-imgMaradjonTettrekesz {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("/wp-content/assets/pg_landing/avemar_hero_dobozos_allo.jpg");
}

.o-jumbotron.-imgMaradjonTettrekesz * {
  color: #ffffff;
}

@media (min-width: 768px) {
  .o-jumbotron.-imgMaradjonTettrekesz {
    background-image: url("/wp-content/assets/pg_landing/avemar_hero_dobozos_fekvo.jpg");
  }
}

.o-jumbotron.-themeHeroHead {
  width: 100%;
  height: 90vh;
}

.o-jumbotron.-themeHeroHead > .container {
  height: 100%;
}

.o-jumbotron.-themeHeroHead > .container > .row {
  height: 100%;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeHeroHead {
    padding-bottom: 0;
    height: 177.77vw;
  }
}

.o-jumbotron.-themeHeroHead .a-text {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeHeroHead .a-text {
    font-size: 12px;
  }
}

.o-jumbotron.-themeHeroHead .a-lead {
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 3rem;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeHeroHead .a-lead {
    font-size: 12px;
  }
}

.o-jumbotron.-themeHeroHead .a-title {
  text-transform: uppercase;
  font-family: "Open Sans";
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1em;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 1.5rem;
}

.o-jumbotron.-themeHeroHead .a-title span {
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeHeroHead .a-title {
    font-size: 18px;
    line-height: 1.1em;
  }
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeHeroHead .o-jumbotron__image {
    padding: 1.5rem 0;
  }
}

.o-jumbotron.-themeHeroHead .o-jumbotron__body {
  height: 100%;
  padding-top: 45px;
  padding-bottom: 45px;
}

@media (min-width: 768px) {
  .o-jumbotron.-themeHeroHead .o-jumbotron__body {
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
}

.o-jumbotron.-themeHeroHead .m-button.-themePG {
  display: block;
}

.o-jumbotron.-themeHeroHead .m-button.-themeAVE {
  display: block;
}

.o-jumbotron.-themeHeroHead .m-button.-themePGinv {
  display: block;
}

/**
 * Progressive landing HERO.
 * Usage:

 */

.o-jumbotron.-themeGold {
  color: #ffffff;
  background-color: rgba(195, 159, 70, 0.8);
}

.o-jumbotron.-themeGold .o-jumbotron__container {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeGold .o-jumbotron__container {
    margin-top: 1rem;
    margin-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeGold .o-jumbotron__image {
    padding: 1.5rem 0;
  }
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeGold .o-jumbotron__body {
    padding: 0 1rem;
  }
}

.o-jumbotron.-themeGold .a-text {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeGold .a-text {
    font-size: 12px;
    margin-bottom: 1rem;
  }
}

.o-jumbotron.-themeGold .a-header {
  text-transform: uppercase;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 0em;
  text-align: center;
  color: #ffffff;
}

.o-jumbotron.-themeGold .a-header span {
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeGold .a-header {
    font-size: 24px;
    line-height: 1.1em;
    text-align: left;
    margin-bottom: 1rem;
  }
}

.o-jumbotron.-themeGold .a-lead {
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeGold .a-lead {
    font-size: 12px;
    margin-bottom: 1rem;
  }
}

.o-jumbotron.-themeGold .a-links {
  flex: 0 0 50%;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeGold .a-links {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.25rem;
  }
}

.o-jumbotron.-themeGold .m-button.-themeInvPG {
  border: transparent 1px solid;
  display: block;
}

.o-jumbotron.-themeGold .m-button.-themeInvPG:hover,
.o-jumbotron.-themeGold .m-button.-themeInvPG:focus,
.o-jumbotron.-themeGold .m-button.-themeInvPG:active {
  border: #fff 1px solid;
}

/**
 * Progressive landing page testimonials card style
 * Usage:

 */

.o-jumbotron.-themeTestimonialsPG .o-jumbotron__content {
  padding: 1rem 0 0 0;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeTestimonialsPG .o-jumbotron__content {
    padding: 0.25rem 0 0.25rem 0;
  }
}

.o-jumbotron.-themeTestimonialsPG .m-card {
  padding: 0;
  margin-bottom: 1rem;
}

.o-jumbotron.-themeTestimonialsPG .carousel-item {
  justify-content: center;
}

.o-jumbotron.-themeTestimonialsPG .carousel-item > div {
  float: left;
}

.m-card.-themeTestimonialPG {
  float: left;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .m-card.-themeTestimonialPG {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.m-card.-themeTestimonialPG .m-card__image {
  border-radius: 10px;
}

.m-card.-themeTestimonialPG .m-card__image img {
  width: 100%;
}

.m-card.-themeTestimonialPG .a-text {
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 991.98px) {
  .m-card.-themeTestimonialPG .a-text {
    font-size: 12px;
  }
}

.m-card.-themeTestimonialPG .a-caption {
  margin-top: 0.5rem;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.m-card.-themeTestimonialPG .a-caption:after,
.m-card.-themeTestimonialPG .a-caption:before {
  content: "\A0\A0\A0\A0\A0\A0";
  text-decoration: line-through;
  margin: auto 1.5em;
}

@media (max-width: 991.98px) {
  .m-card.-themeTestimonialPG .a-caption {
    font-size: 16px;
  }
}

.m-card.-themeTestimonialPG .a-quote {
  width: 37px;
  height: auto;
  margin: 1rem auto;
}

@media (max-width: 991.98px) {
  .m-card.-themeTestimonialPG .a-quote {
    width: 15px;
    height: auto;
    margin: 1rem auto;
  }
}

.m-card.-themeTestimonialPG .m-card__overlay {
  transition: all 0.3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(195, 159, 70, 0.8);
  padding: 30px;
  border-radius: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .m-card.-themeTestimonialPG .m-card__overlay {
    transition: none;
  }
}

.m-card.-themeTestimonialPG .m-card__overlay p {
  margin-bottom: 0;
}

.m-card.-themeTestimonialPG:hover .m-card__overlay,
.m-card.-themeTestimonialPG:focus .m-card__overlay,
.m-card.-themeTestimonialPG:active .m-card__overlay {
  transition: all 0.3s ease-out;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .m-card.-themeTestimonialPG:hover .m-card__overlay,
  .m-card.-themeTestimonialPG:focus .m-card__overlay,
  .m-card.-themeTestimonialPG:active .m-card__overlay {
    transition: none;
  }
}

.m-card.-themeTestimonialPG.active .m-card__overlay {
  opacity: 1;
}

.m-card.-themeTestimonialPG.disabled .m-card__overlay {
  opacity: 0 !important;
}

/**
 * Progressive landing page products card style
 * Usage:

 */

.o-jumbotron.-themeProductsPG .o-jumbotron__content {
  padding: 1rem 0 0 0;
}

.o-jumbotron.-themeProductsPG .o-jumbotron__content .a-lead {
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  flex: 0 0 50%;
  max-width: 50%;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2rem;
  text-align: center;
  color: #666666;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeProductsPG .o-jumbotron__content .a-lead {
    flex: 0 0 100%;
    max-width: 100%;
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeProductsPG .o-jumbotron__content {
    padding: 0.25rem 0 0.25rem 0;
  }
}

.m-card.-themeProductPG {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.-themeProductPG .m-card__lead {
  min-height: 80px;
  max-height: 125px;
  padding: 1rem 1.5rem 0;
  border-radius: 10px;
}

.-themeProductPG .m-card__lead.-borderGradient {
  background: linear-gradient(#f4f4f4, #f4f4f4) padding-box, linear-gradient(to bottom, #c39f46, transparent) border-box;
  border: 1px solid transparent;
  border-radius: 10x;
  display: inline-block;
}

.-themeProductPG .m-card__lead .a-text {
  color: #c39f46;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  line-height: 1rem;
}

.-themeProductPG .m-card__body {
  height: 100%;
  display: flex;
  /* required */
  flex-flow: row nowrap;
  /* required */
}

.-themeProductPG .m-card__body .a-title {
  color: #c39f46;
  text-transform: uppercase;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  height: 2.8rem;
  line-height: 1.2rem;
}

.-themeProductPG .m-card__body .a-subtitle {
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  padding-bottom: 1rem;
}

.-themeProductPG .m-card__body .a-text {
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
}

.-themeProductPG .m-card__body .a-links {
  padding-top: 1rem;
}

.-themeProductPG .m-card__body .m-card__content {
  box-sizing: border-box;
  /* required */
  width: 100%;
  /* required */
  flex: none;
  /* required */
  padding: 30px;
  background: linear-gradient(180deg, #FFFFFF 65.62%, #F4F4F4 100%);
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.-themeProductPG .m-card__body .m-card__content img {
  transition: all 0.5s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .-themeProductPG .m-card__body .m-card__content img {
    transition: none;
  }
}

.-themeProductPG .m-card__body .m-card__overlay {
  transition: all 0.5s ease-in-out;
  box-sizing: border-box;
  /* required */
  width: 100%;
  /* required */
  flex: none;
  /* required */
  margin-left: -100%;
  /* required */
  opacity: 0;
  background-color: rgba(195, 159, 70, 0.8);
  padding: 30px;
  border-radius: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .-themeProductPG .m-card__body .m-card__overlay {
    transition: none;
  }
}

.-themeProductPG .m-card__body .m-card__overlay .a-title {
  color: #fff;
}

.-themeProductPG .m-card__body .m-card__overlay p {
  margin-bottom: 0;
}

.-themeProductPG .m-card__body:hover .m-card__overlay,
.-themeProductPG .m-card__body:focus .m-card__overlay,
.-themeProductPG .m-card__body:active .m-card__overlay {
  transition: all 0.5s ease-in-out;
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .-themeProductPG .m-card__body:hover .m-card__overlay,
  .-themeProductPG .m-card__body:focus .m-card__overlay,
  .-themeProductPG .m-card__body:active .m-card__overlay {
    transition: none;
  }
}

.-themeProductPG .m-card__body:hover .m-card__content img,
.-themeProductPG .m-card__body:focus .m-card__content img,
.-themeProductPG .m-card__body:active .m-card__content img {
  transition: all 0.5s ease-in-out;
  z-index: 0;
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .-themeProductPG .m-card__body:hover .m-card__content img,
  .-themeProductPG .m-card__body:focus .m-card__content img,
  .-themeProductPG .m-card__body:active .m-card__content img {
    transition: none;
  }
}

.-themeProductPG .m-card__body.active .m-card__overlay {
  opacity: 1;
}

.-themeProductPG .m-card__body.disabled .m-card__overlay {
  opacity: 0 !important;
}

.-themeProductPG .m-card__body .m-button.-themePG {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
  color: #c39f46;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  display: block;
  border-radius: 10px;
  margin-top: 0;
  border: #c39f46 1px solid;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.-themeProductPG .m-card__body .m-button.-themePG:hover {
  color: #212529;
  background-color: #c39f46;
  border-color: #fff;
}

.-themeProductPG .m-card__body .m-button.-themePG:focus,
.-themeProductPG .m-card__body .m-button.-themePG.focus {
  color: #212529;
  background-color: #c39f46;
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}

.-themeProductPG .m-card__body .m-button.-themePG.disabled,
.-themeProductPG .m-card__body .m-button.-themePG:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.-themeProductPG .m-card__body .m-button.-themePG:not(:disabled):not(.disabled):active,
.-themeProductPG .m-card__body .m-button.-themePG:not(:disabled):not(.disabled).active,
.show > .-themeProductPG .m-card__body .m-button.-themePG.dropdown-toggle {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.-themeProductPG .m-card__body .m-button.-themePG:not(:disabled):not(.disabled):active:focus,
.-themeProductPG .m-card__body .m-button.-themePG:not(:disabled):not(.disabled).active:focus,
.show > .-themeProductPG .m-card__body .m-button.-themePG.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}

.-themeProductPG .m-card__body .m-button.-themePG:hover,
.-themeProductPG .m-card__body .m-button.-themePG:focus,
.-themeProductPG .m-card__body .m-button.-themePG:active {
  color: #fff;
  background-color: #c39f46;
  border: #fff 1px solid;
}

.o-jumbotron.-themeBasicPG .o-jumbotron__content {
  padding: 1rem 0 3rem 0;
}

@media (max-width: 991.98px) {
  .o-jumbotron.-themeBasicPG .o-jumbotron__content {
    padding: 0.25rem 0 0.25rem 0;
  }
}

.m-card.-themeBasicPG {
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0 3rem;
}

@media (min-width: 768px) {
  .m-card.-themeBasicPG {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (max-width: 991.98px) {
  .m-card.-themeBasicPG {
    padding: 0 1rem;
  }
}

.-themeBasicPG .m-card__lead {
  height: 125px;
  padding: 1rem 1.5rem 0;
}

.-themeBasicPG .m-card__body .a-title {
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  color: #c39f46;
  padding: 1.5rem 0 0;
  margin-bottom: 0.5rem;
}

.-themeBasicPG .m-card__body .a-text {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  color: #666666;
}

@media (max-width: 991.98px) {
  .-themeBasicPG .m-card__body .a-text {
    font-size: 12px;
  }
}

@media (max-width: 991.98px) {
  .-themeBasicPG .m-card__body .a-links {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    margin-left: auto;
    margin-right: auto;
  }
}

/**
 * Progressive footer.
 * Usage:

 */

.-pageImpressum .o-footer {
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  margin-right: auto;
  margin-left: auto;
}

.-pageImpressum .o-footer .o-footer__brand {
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
}

.-pageImpressum .o-footer .o-footer__brand img {
  width: 155px;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .-pageImpressum .o-footer .o-footer__brand {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .-pageImpressum .o-footer .o-footer__brand img {
    margin-bottom: 0;
  }
}

.-pageImpressum .o-footer .o-footer__content {
  font-family: "Source Sans Pro";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0em;
  text-align: center;
  color: #666666;
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.-pageImpressum .o-footer .o-footer__content p {
  margin: 10px 0;
}

.-pageImpressum .o-footer .o-footer__content a {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .-pageImpressum .o-footer .o-footer__content {
    flex: 0 0 75%;
    max-width: 75%;
    text-align: left;
  }
}

.-pageImpressum .o-footer .o-footer__content nav {
  margin: 35px 0;
}

@media (min-width: 768px) {
  .-pageImpressum .o-footer .o-footer__content nav {
    flex: 0 0 75%;
    max-width: 75%;
    margin: 0;
    float: left;
  }

  .-pageImpressum .o-footer .o-footer__content nav ul li {
    display: inline;
    padding: 5px 30px;
    border-right: 1px solid #c39f46;
  }

  .-pageImpressum .o-footer .o-footer__content nav ul li:last-child {
    border-right: 0;
    padding-right: 50px;
  }

  .-pageImpressum .o-footer .o-footer__content nav ul li:first-child {
    padding-left: 0;
  }
}

.-pageImpressum .o-footer .o-footer__content nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.-pageImpressum .o-footer .o-footer__content nav ul li {
  padding-bottom: 5px;
}

.-pageImpressum .footer_widget {
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  margin-right: auto;
  margin-left: auto;
}

.-pageImpressum .footer_widget .widget-title {
  text-align: center;
  margin-bottom: 1rem;
}

.-pageImpressum .footer_widget .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.-pageImpressum .footer_widget .menu .menu-item {
  margin: 0 0.5rem;
}

@media (min-width: 768px) {
  .-pageImpressum .footer_widget .menu {
    flex-direction: row;
  }
}

.woocommerce-cart-form,
.shop_table,
.woocommerce-checkout .shop_table,
.woocommerce-checkout-payment {
  background-color: #fff !important;
}

.wc_payment_methods {
  padding-bottom: 1rem !important;
}

.woocommerce .woocommerce-tabs {
  margin-bottom: 1rem;
}

.woocommerce .woocommerce-tabs .tab-content {
  background-color: #fff;
  padding: 1rem;
  border-left: 1px solid rgba(0, 0, 0, 0.125);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-right: 1px solid rgba(0, 0, 0, 0.125);
}

.woocommerce-input-wrapper .form-control {
  width: auto;
}

@media (min-width: 768px) {
  .o-catalog.-themeProductGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.-themeProductGrid .m-card {
  background: linear-gradient(180deg, #FFFFFF 65.62%, #F4F4F4 100%);
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.-themeProductGrid .m-card .sale {
  display: none;
}

.-themeProductGrid .m-card del {
  color: #666666;
}

.-themeProductGrid .m-card .a-title,
.-themeProductGrid .m-card .woocommerce-loop-product__title {
  text-transform: uppercase;
}

.-themeProductGrid .m-card .a-title,
.-themeProductGrid .m-card .woocommerce-loop-product__title,
.-themeProductGrid .m-card .price {
  display: block;
  color: var(--primary) !important;
  font-family: "Open Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  line-height: 1.5rem;
}

.-themeProductGrid .m-card .a-title.part-0,
.-themeProductGrid .m-card .woocommerce-loop-product__title.part-0,
.-themeProductGrid .m-card .price.part-0 {
  font-size: 22px;
}

.-themeProductGrid .m-card .a-title.part-1,
.-themeProductGrid .m-card .woocommerce-loop-product__title.part-1,
.-themeProductGrid .m-card .price.part-1 {
  font-size: 16px;
  color: #666666 !important;
}

.-themeProductGrid .m-card .cart .form-group {
  display: flex;
  justify-content: center;
}

.-themeProductGrid .m-card .cart .form-group .control-label {
  margin-bottom: 0;
}

.-themeProductGrid .m-card .cart .quantity {
  margin-right: 0.25rem;
}

.-themeProductGrid .m-card .cart .quantity input.qty {
  width: auto;
}

.-themeProductGrid .m-card .awdr-bulk-customizable-table {
  display: flex;
  justify-content: center;
}

.-themeProductGrid .m-card .product-details {
  margin: 0 3rem;
  display: flex;
  justify-content: center;
}

/*!
// CSS only Responsive Tables
// http://dbushell.com/2016/03/04/css-only-responsive-tables/
// by David Bushell
*/

.awdr-bulk-customizable-table {
  margin-bottom: 1rem;
  font-size: 80%;
}

.awdr-bulk-customizable-table .wdr_bulk_title {
  font-weight: 800;
}

.awdr-bulk-customizable-table td,
.awdr-bulk-customizable-table th {
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid #dee2e6;
}

.awdr-bulk-customizable-table td:last-child,
.awdr-bulk-customizable-table th:last-child {
  border-bottom: 0;
}

.awdr-bulk-customizable-table td {
  text-align: center;
}

.woocommerce .product-information {
  background-color: #FFFFFF;
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.woocommerce .product-information .tab-content .tab-pane {
  border: 1px solid #c2c8b7;
  background-color: #f3f4f1;
  border-radius: 0;
  border-top: 0;
  margin: 0 0 20px;
  padding: 30px;
}

.woocommerce .product-information .nav-tabs .nav-link {
  font-weight: 800;
}

.m-card.-themeProductDisplay {
  background: linear-gradient(180deg, #FFFFFF 65.62%, #F4F4F4 100%);
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.m-card.-themeProductDisplay .sale-product {
  display: none;
}

.m-card.-themeProductDisplay del {
  color: #666666;
}

.m-card.-themeProductDisplay .a-title {
  text-transform: uppercase;
}

.m-card.-themeProductDisplay .a-title,
.m-card.-themeProductDisplay .price {
  display: block;
  color: var(--primary) !important;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
}

.m-card.-themeProductDisplay .a-title.part-0,
.m-card.-themeProductDisplay .price.part-0 {
  font-size: 22px;
}

.m-card.-themeProductDisplay .a-title.part-1,
.m-card.-themeProductDisplay .price.part-1 {
  font-size: 16px;
  color: #666666 !important;
}

.m-card.-themeProductDisplay .cart .quantity {
  margin-right: 0.25rem;
}

.m-card.-themeProductDisplay .cart .quantity input.qty {
  width: auto;
}

.m-card.-themeProductDisplay .cart .control-label {
  margin-bottom: 0;
}

.m-card.-themeProductDisplay .cart .a-btn-details {
  display: none;
}

@media (min-width: 768px) {
  .m-card.-themeProductDisplay .awdr-bulk-customizable-table td,
  .m-card.-themeProductDisplay .awdr-bulk-customizable-table th {
    padding: 0.5rem 1rem;
  }
}

.-themeProductDisplay .m-card__image .woocommerce-product-gallery {
  width: auto !important;
}

.-themeProductDisplay .m-card__buy .a-title {
  font-size: 22px;
}

.-themeProductDisplay .m-card__buy .a-title .commerce-product-field-commerce-price {
  display: inline-block;
}

.-themeProductDisplay .m-card__buy .btn-default {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
  color: #c39f46;
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  border: #c39f46 1px solid;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.-themeProductDisplay .m-card__buy .btn-default:hover {
  color: #212529;
  background-color: #c39f46;
  border-color: #fff;
}

.-themeProductDisplay .m-card__buy .btn-default:focus,
.-themeProductDisplay .m-card__buy .btn-default.focus {
  color: #212529;
  background-color: #c39f46;
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}

.-themeProductDisplay .m-card__buy .btn-default.disabled,
.-themeProductDisplay .m-card__buy .btn-default:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.-themeProductDisplay .m-card__buy .btn-default:not(:disabled):not(.disabled):active,
.-themeProductDisplay .m-card__buy .btn-default:not(:disabled):not(.disabled).active,
.show > .-themeProductDisplay .m-card__buy .btn-default.dropdown-toggle {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.-themeProductDisplay .m-card__buy .btn-default:not(:disabled):not(.disabled):active:focus,
.-themeProductDisplay .m-card__buy .btn-default:not(:disabled):not(.disabled).active:focus,
.show > .-themeProductDisplay .m-card__buy .btn-default.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}

.-themeProductDisplay .m-card__buy .btn-default:hover,
.-themeProductDisplay .m-card__buy .btn-default:focus,
.-themeProductDisplay .m-card__buy .btn-default:active {
  color: #fff;
  background-color: #c39f46;
  border: #fff 1px solid;
}

@media (max-width: 991.98px) {
  .-themeProductDisplay .m-card__buy .btn-default {
    display: inline-block;
  }
}

@media (max-width: 991.98px) {
  .-themeProductDisplay .m-card__buy .btn-primary {
    display: inline-block;
  }
}

.view-content.-styleGrid3 .views-row {
  flex: 1;
  margin-bottom: 1rem;
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .view-content.-styleGrid3 .views-row {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.view-content.-styleGrid3 .m-card__image,
.view-content.-styleGrid3 .m-card__body,
.view-content.-styleGrid3 .m-card__buy {
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  flex: 0 0 100%;
  max-width: 100%;
}

.view-content.-styleGrid3 .m-card.-themeProductDisplay .m-card__image,
.view-content.-styleGrid3 .m-card.-themeProductDisplay .m-card__body,
.view-content.-styleGrid3 .m-card.-themeProductDisplay .m-card__buy .text-align {
  text-align: center;
}

.view-content.-styleList .views-row {
  flex: 1;
  margin-bottom: 1rem;
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .view-content.-styleList .views-row {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.view-content.-styleList .m-card__image,
.view-content.-styleList .m-card__body,
.view-content.-styleList .m-card__buy {
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
}

@media (min-width: 768px) {
  .view-content.-styleList .m-card__image {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .view-content.-styleList .m-card__body {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .view-content.-styleList .m-card__buy {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.view-content.-styleList .m-card.-themeProductDisplay .m-card__body,
.view-content.-styleList .m-card.-themeProductDisplay .m-card__buy .text-align {
  text-align: left;
}

.view-content.-styleList .m-card.-themeProductDisplay .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-type-product-display .product-information .tab-content {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-top: 0;
  padding: 1.5rem;
}

body {
  background-color: #E5E5E5;
  text-align: inherit;
}

.site-content {
  margin-top: 56px;
}

@media (min-width: 768px) {
  .site-content {
    margin-top: 77px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.a-title {
  font-family: "Open Sans";
  text-transform: uppercase;
}

.a-lead {
  font-weight: 700;
}

.l-page {
  background-color: #f4f4f4;
}

.l-page__item {
  background-color: #f4f4f4;
}

.l-page__item.-pagePostscript {
  border-top: 1px solid #dbded4;
  background-color: #f4f4f4;
  padding: 0;
  margin: 0;
}

.l-page__item.-pagePostscript h2 {
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.l-page__item.-pageMain {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.l-page__item.-pageNavbar {
  background-color: #95827e;
}

.l-page__item.-pageFooter {
  padding: 0;
  margin: 0;
  background-color: rgba(195, 159, 70, 0.8);
  font-size: 0.875rem;
  color: var(--white);
}

.l-page__item.-pageFooter .table {
  color: var(--white);
}

.l-page__item.-pageFooter .table.table-hover tr:hover {
  color: var(--white);
}

.l-page__item.-pageFooter h1,
.l-page__item.-pageFooter h2,
.l-page__item.-pageFooter h3,
.l-page__item.-pageFooter h4,
.l-page__item.-pageFooter h5,
.l-page__item.-pageFooter h6,
.l-page__item.-pageFooter a {
  color: var(--white);
}

.l-page__item.-pageFooter .arrow-menu {
  border-radius: 0;
  margin: 0;
  padding: 0;
  list-style: outside none none;
}

.l-page__item.-pageFooter .arrow-menu .nav-item .nav-link {
  outline: 0 none;
  text-decoration: none;
  font-size: 100%;
  font-weight: 300;
  display: flex;
}

.l-page__item.-pageFooter .arrow-menu .nav-item .nav-link::before {
  font-size: 0.9;
  margin-right: 1rem;
}

.l-page__item.-pageImpressum {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f4f4f4;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .l-page__item.-pageImpressum {
    padding-top: 50px;
  }
}

.form-control {
  border-radius: 5px;
}

@media (max-width: 767.98px) {
  .-themeJumbotronMain .jumbotron__body {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #b20a28;
  }
}

.-themeJumbotronMain .jumbotron__body .a-title {
  text-align: center;
  font-weight: bold;
  text-shadow: 0px 3px 2px #575748;
  color: #fff;
}

@media (min-width: 768px) {
  .-themeJumbotronMain .jumbotron__body .a-title {
    font-size: 50px;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .-themeJumbotronMain .jumbotron__body .a-title {
    font-size: 70px;
  }
}

.-themeJumbotronMain .jumbotron__body .a-text {
  font-size: 0.9rem;
}

.table.-stylePG {
  margin-bottom: 10px;
  border: 3px solid #fff;
  border-collapse: collapse;
}

.table.-stylePG td {
  padding: 3px 5px;
  vertical-align: top;
  border: 2px solid;
}

.table.-stylePG .bg-dark,
.table.-stylePG th {
  background-color: #c39f46;
}

.table.-stylePG .bg-mid,
.table.-stylePG.table-hover > tbody > tr:hover,
.table.-stylePG .rh {
  background-color: rgba(195, 159, 70, 0.3);
}

.table.-stylePG .bg-light,
.table.-stylePG tr.even {
  background-color: transparent;
}

.table.-stylePG .bg-white,
.table.-stylePG tr.odd {
  background-color: #fff;
}

.table.-stylePG .rh {
  font-weight: bold;
}

.table.-stylePG th {
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  border: 2px solid;
  border-color: #fff;
  vertical-align: middle;
  padding: 20px 5px;
}

.table.-stylePG tr.odd td {
  border-color: #fff #fff;
}

.table.-stylePG tr.even td {
  border-color: #fff #fff;
}

.m-list.-themeListPG {
  border-radius: 0;
  margin: 0;
  padding: 0;
  list-style: outside none none;
  color: #666666;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
}

.m-list.-themeListPG li,
.m-list.-themeListPG dt {
  display: flex;
}

.m-list.-themeListPG li::before,
.m-list.-themeListPG dt::before {
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  content: "\F111" !important;
  color: #C39F46;
  padding-right: 1rem;
}

.m-list.-themeListPG dt {
  font-weight: 700;
  padding-bottom: 0.5rem;
}

.m-list.-themeListPG dd {
  padding-left: 1rem;
  margin-left: 12px;
}

.m-list.-themeListPG li,
.m-list.-themeListPG dd {
  padding-bottom: 1rem;
}

.o-jumbotron.-theme2col {
  padding: 0;
}

.o-jumbotron.-theme2col .webform-client-form > div {
  display: flex;
  flex-wrap: wrap;
}

.o-jumbotron.-theme2col .webform-client-form .webform-component-markup {
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
}

.o-jumbotron.-theme2col .webform-client-form .form-actions {
  margin: 0 auto;
}

.o-jumbotron.-theme2col .webform-client-form .form-checkbox {
  margin-right: 0.5rem;
}

.o-jumbotron.-theme2col h2 {
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.page-frontpage.domain-avemar-hu .-pageMain {
  display: none;
}

.carousel-indicators li {
  height: 8px;
  width: 80px;
  background-color: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li.active {
  background-color: #c39f46;
}

.breadcrumb {
  background-color: transparent;
}

