div.navigation__desktop.is-open {
margin-left: 0;
visibility: visible;
opacity: 1;
}
.modal-open {
background-color: rgba(0, 0, 0, 0.7);
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 11;
transition: all 0.5s;
}
.modal-open-body {
overflow: hidden;
}
.header__menu-icon {
position: relative;
width: 50px;
height: 50px;
cursor: pointer;
background-color: var(--white);
z-index: 111;
}
.header__menu-icon-checkbox {
display: block;
width: 100%;
height: 100%;
position: relative;
cursor: pointer;
z-index: 2;
-webkit-touch-callout: none;
position: absolute;
opacity: 0;
}
.header__menu-icon-bars {
margin: auto;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
width: 22px;
height: 12px;
}
.header__menu-icon-bar {
position: absolute;
display: block;
width: 100%;
height: 2px;
background-color: var(--brown);
border-radius: 1px;
transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.header__menu-icon-bar:first-of-type {
top: 0;
}
.header__menu-icon-bar:last-of-type {
bottom: 0;
} .header__menu-icon.active .header__menu-icon-bar:first-of-type,
.header__menu-icon-checkbox:checked
+ .header__menu-icon-bars
.header__menu-icon-bar:first-of-type {
transform: rotate(45deg);
top: 5px;
}
.header__menu-icon.active .header__menu-icon-bar:last-of-type,
.header__menu-icon-checkbox:checked
+ .header__menu-icon-bars
.header__menu-icon-bar:last-of-type {
transform: rotate(-45deg);
bottom: 5px;
}
.header__menu-icon.active:hover .header__menu-icon-bar:first-of-type,
.header__menu-icon.active:hover .header__menu-icon-bar:last-of-type,
.header__menu-icon:hover
.header__menu-icon-checkbox:checked
+ .header__menu-icon-bars
.header__menu-icon-bar:first-of-type,
.header__menu-icon:hover
.header__menu-icon-checkbox:checked
+ .header__menu-icon-bars
.header__menu-icon-bar:last-of-type {
width: 22px;
}
@media (min-width: 1024px) {
.header__menu-icon:hover .header__menu-icon-bar:first-of-type {
width: 26px;
}
.header__menu-icon:hover .header__menu-icon-bar:last-of-type {
width: 12px;
}
}
.navigation__mobile .header__mobile-wrapper {
display: none;
} .navigation {
background-color: var(--yellow);
width: 100%;
z-index: 11;
position: sticky;
top: 0;
height: 55px;
}
.navigation__desktop {
width: 100%;
max-width: 1250px;
padding: 0 24px;
margin: 0 auto;
}
.navigation__desktop ul {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 10px;
padding: 5px 0;
margin: 0;
}
.navigation__desktop ul li {
list-style-type: none;
padding: 10px 0;
position: relative;
}
.navigation__desktop ul li:not(:last-child):after {
content: "";
height: 100%;
width: 1px;
background-color: var(--brown);
position: absolute;
right: -5px;
top: 0;
}
.navigation__desktop ul li a {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
justify-content: center;
font-weight: 600;
}
.navigation__desktop ul li a img {
width: auto;
height: 25px;
}
.colorGreen {
color: var(--green);
}
.colorRed {
color: var(--red);
}
.logo {
max-width: 400px;
width: auto;
position: absolute;
top: 65px;
left: 40px;
background-color: var(--white);
border-bottom-left-radius: 16px;
border-bottom-right-radius: 16px;
padding: 20px;
transition: all 1s;
visibility: visible;
opacity: 1;
}
img.logo.scrolled {
visibility: hidden;
opacity: 0;
}
.navigation__menu ul li.navigation__submenu {
position: absolute;
top: 65px;
right: 20px;
padding: 0;
}
ul.navigation__submenu-list {
grid-template-columns: 1fr;
gap: 10px;
padding: 0;
}
ul.navigation__socialMedia-list {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.navigation__socialMedia ul.navigation__socialMedia-list li a {
background-color: transparent;
padding: 0;
}
ul.navigation__socialMedia-list li a svg {
fill: #fff;
width: 40px;
height: 40px;
}
ul.navigation__submenu-list li.navigation__shopButton a {
flex-direction: column;
gap: 5px;
padding: 10px;
text-transform: uppercase;
color: var(--red);
font-size: 16px;
font-weight: 600;
}
ul.navigation__submenu-list li {
padding: 0;
}
ul.navigation__submenu-list li a {
background-color: var(--yellow);
padding: 5px 10px;
color: var(--red);
font-size: 14px;
font-weight: 400;
}
ul.navigation__submenu-list li::after {
display: none;
}
@media screen and (max-width: 1024px) {
.navigation__desktop ul li a {
flex-direction: column;
}
.navigation__desktop ul li {
padding: 5px 0;
}
.logo {
top: 83px;
}
.navigation {
height: 80px;
}
.navigation__menu ul li.navigation__submenu {
top: 90px;
}
ul.navigation__submenu-list li {
padding: 0;
}
}
@media screen and (max-width: 768px) {
.navigation__mobile {
display: flex;
justify-content: space-between;
z-index: 11;
width: 100%;
align-items: center;
}
img.logo {
position: relative;
left: auto;
top: auto;
background-color: transparent;
max-width: 130px!important;
padding: 0;
}
img.logo.scrolled {
visibility: visible;
opacity: 1;
}
.navigation .header__mobile-wrapper {
display: block;
}
.navigation__desktop {
width: 100%;
height: 100vh;
background-color: var(--yellow);
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
margin-left: -100%;
transition: all 0.5s;
overflow-y: auto;
visibility: hidden;
opacity: 0;
}
.navigation__desktop ul {
grid-template-columns: 1fr;
gap: 20px;
}
.navigation {
display: flex;
justify-content: space-between;
padding: 10px;
align-items: center;
flex-wrap: wrap;
}
.navigation__desktop .navigation__menu ul li:after {
right: auto;
top: auto;
bottom: -10px;
height: 1px;
width: 100%;
}
.navigation__desktop ul li a {
flex-direction: row;
}
.navigation__menu ul li.navigation__submenu {
position: relative;
right: auto;
top: auto;
}
ul.navigation__submenu-list {
gap: 10px;
}
ul.navigation__socialMedia-list {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.navigation__socialMedia ul.navigation__socialMedia-list li a {
gap: 0;
}
ul.navigation__submenu-list li.navigation__shopButton a {
flex-direction: row;
}
}
@media only screen and (min-width: 769px) {
.woocommerce-account .woocommerce-MyAccount-navigation {
width: 22%;
}
.woocommerce-account .woocommerce-MyAccount-content {
width: 75%;
}
} nav.woocommerce-MyAccount-navigation ul {
list-style-type: none;
padding-left: 0;
max-width: 200px;
font-size: 17px;
line-height: 26px;
}
nav.woocommerce-MyAccount-navigation ul li {
padding: 8px 20px;
background-color: rgba(0, 0, 0, 0.05);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
nav.woocommerce-MyAccount-navigation ul li.is-active {
background-color: rgba(0, 0, 0, 0.1);
}
nav.woocommerce-MyAccount-navigation ul li.is-active a {
color: rgba(0, 0, 0, 0.8);
cursor: default;
}
nav.woocommerce-MyAccount-navigation ul li.is-active:after {
content: "";
height: 0;
width: 0;
border-top: 20px solid transparent;
border-left: 14px solid rgba(0, 0, 0, 0.1);
border-bottom: 20px solid transparent;
float: right;
margin-right: -34px;
margin-top: -7px;
}
nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover {
background-color: rgba(0, 0, 0, 0.07);
}
nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover:after {
content: "";
height: 0;
width: 0;
border-top: 20px solid transparent;
border-left: 14px solid rgba(0, 0, 0, 0.07);
border-bottom: 20px solid transparent;
float: right;
margin-right: -34px;
margin-top: -7px;
}
.woocommerce-MyAccount-content header {
position: relative !important;
}
:root {
--white: #ffffff;
--black: #000000;
--green: #649d29;
--yellow: #ffce00;
--brown: #5e4635;
--lightBrown: #e0d7d1;
--red: #e4032f;
} @font-face {
font-family: "Noto Sans";
font-style: normal;
font-weight: 400;
src: local(""),
url(//jonglier-mit-mir.at/fonts/noto-sans-v27-latin-regular.woff2) format("woff2"), url(//jonglier-mit-mir.at/fonts/noto-sans-v27-latin-regular.woff) format("woff"); } @font-face {
font-family: "Noto Sans";
font-style: normal;
font-weight: 500;
src: local(""), url(//jonglier-mit-mir.at/fonts/noto-sans-v27-latin-500.woff2) format("woff2"), url(//jonglier-mit-mir.at/fonts/noto-sans-v27-latin-500.woff) format("woff"); } @font-face {
font-family: "Noto Sans";
font-style: normal;
font-weight: 600;
src: local(""), url(//jonglier-mit-mir.at/fonts/noto-sans-v27-latin-600.woff2) format("woff2"), url(//jonglier-mit-mir.at/fonts/noto-sans-v27-latin-600.woff) format("woff"); }
.woocommerce span.onsale {
font-size: 10px !important;
background-color: var(--yellow) !important;
color: var(--red) !important;
}
.wc-forward,
#place_order,
.single_add_to_cart_button {
background-color: var(--brown) !important;
color: var(--white) !important;
padding: 10px 15px;
}
.woocommerce ul.products li.product .price {
color: var(--green) !important;
font-size: 20px !important;
}
.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
display: none !important;
}
.archive .products li {
border: 1px solid var(--green) !important;
width: 100% !important;
padding: 12px !important;
margin: 0 !important;
}
.archive .products li .woocommerce-loop-product__title {
font-size: 28px !important;
color: var(--green) !important;
width: 100%;
}
.archive .products li .add_to_cart_button,
.woocommerce a.button {
background: var(--green) !important;
color: var(--white) !important;
font-weight: 600;
}
.archive .products {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin: 24px 0 !important;
}
.archive .woocommerce-products-header__title {
color: var(--green);
text-align: center;
width: 100%;
font-weight: 600;
}
.archive .woocommerce-products-header {
display: flex;
flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
.archive .products {
grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 768px) {
.archive .products {
grid-template-columns: repeat(1, 1fr);
}
.archive .products li .add_to_cart_button {
display: flex;
justify-content: center;
}
}
h1,
h2,
h3,
h4,
h5,
h6,
.elementor-widget-container .elementor-heading-title,
.elementor-counter-number,
.elementor-image-carousel-caption {
line-height: 1.3em;
font-weight: 400;
}
h1 {
font-size: 36px;
}
h2 {
font-size: 28px;
}
h3 {
font-size: 20px;
}
h4 {
font-size: 16px;
}
.__big h1,
.__big h2 {
font-size: 48px;
}
@media screen and (max-width: 1024px) {
.__big h1,
.__big h2 {
font-size: 40px;
}
}
.footer-wrapper {
padding: 0 10px;
position: relative;
}
.footer-wrapper:before {
background: transparent linear-gradient(180deg, #ffffff 0%, #808080 100%) 0%
0% no-repeat padding-box;
width: 100%;
height: 30px;
content: "";
position: absolute;
top: -30px;
left: 0;
opacity: 0.2;
}
.footer {
max-width: 1250px;
margin: 0 auto;
padding: 64px 10px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
align-items: center;
}
.footer__details {
font-size: 14px;
}
.footer__logo img {
margin: 0 auto;
display: block;
}
.footer__socialMedia {
margin: 12px 0;
padding: 0;
display: inline-flex;
gap: 16px;
}
.footer__socialMedia li {
list-style-type: none;
}
.footer__socialMedia li svg {
width: 40px;
height: 40px;
fill: var(--green);
}
.footer__infoLinks {
display: inline-flex;
flex-wrap: wrap;
gap: 12px;
margin: 0;
padding: 0;
}
.footer__infoLinks li {
list-style-type: none;
}
.footer__infoLinks li a {
font-size: 12px;
text-decoration: none;
}
.footer__buttons ul {
margin: 0;
padding: 0;
}
.footer__buttons li {
list-style-type: none;
margin: 10px 0;
display: flex;
}
.footer__buttons li a {
text-decoration: none;
background-color: var(--green);
color: var(--white);
padding: 10px 10px;
width: 100%;
text-align: center;
max-width: 300px;
margin: 0 auto;
}
li.footer__buttons-item--yellow a {
background-color: var(--yellow);
color: var(--brown);
font-weight: 600;
padding: 12px 10px;
}
.footer__contact {
display: flex;
flex-direction: column;
}
@media screen and (max-width: 768px) {
.footer {
grid-template-columns: 1fr;
}
.footer__contact {
justify-content: center;
text-align: center;
}
.footer__socialMedia,
.footer__infoLinks {
justify-content: center;
}
}
.post-list {
width: 100%;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.post-list li {
list-style-type: none;
padding: 0;
}
.post-list li a {
color: var(--green);
width: 100%;
border: 1px solid var(--green);
float: left;
padding: 10px;
transition: all 0.5s;
}
.woo-coursename {
font-size: 24px;
}
.post-list li a:hover {
background: var(--yellow);
}
.woo-coursedate,
.woo-coursetime,
.woo-course-location,
.woo-course-trainer,
.woo-course-days {
margin: 4px 0;
color: var(--green);
}
.woo-coursetime,
.woo-course-days {
font-weight: 600;
}
.woo-course-trainer .trainer-name:not(:last-child) {
margin-right: 6px;
}
.trainer-name {
text-decoration: underline;
}
.home .woo-course-trainer,
.page-id-370 .woo-course-trainer {
display: flex;
align-items: center;
padding: 10px 0 0;
margin: 10px 0 0;
border-top: 1px solid var(--yellow);
}
.woo-course-trainer__name {
font-size: 20px;
}
.woo-course-trainer__desc {
font-size: 14px;
}
.woo-course-trainer__wrapper {
padding-left: 24px;
}
div.woo-course-trainer div.woo-course-trainer__foto img {
border-radius: 50%;
width: 100px;
height: 100px;
object-fit: cover;
}
@media screen and (max-width: 1024px) {
.post-list {
grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 768px) {
.post-list {
grid-template-columns: 1fr;
}
}
#acf-filter-form {
display: flex;
align-items: center;
gap: 10px;
flex-direction: row;
margin-bottom: 48px;
}
#clear-filters {
background-color: var(--green);
color: var(--white);
border: none;
border-radius: 10px;
padding: 5px;
cursor: auto;
transition: all 0.5s;
}
#clear-filters:hover {
background-color: var(--brown);
}
#acf-filter-form select {
border: 1px solid var(--brown);
border-radius: 10px;
}
#loading-spinner {
position: absolute;
inset: 0;
margin: auto;
z-index: 1111;
display: flex;
align-items: center;
background: rgba(255, 255, 255, 0.6);
}
#loading-spinner img {
max-width: 100px;
margin: 0 auto;
}
.filter-section-title {
font-size: 24px;
font-weight: 600;
color: var(--green);
}
@media screen and (max-width: 768px) {
#acf-filter-form {
flex-direction: column;
}
#clear-filters {
width: 100%;
padding: 10px;
}
}
#primary {
width: 100%;
grid-column: span 9;
position: relative;
min-height: 500px;
}
#sidebar {
grid-column: span 3;
}
.archive #primary {
grid-column: span 12;
}
.woocommerce .wooWrapper {
width: 100%;
max-width: 1250px;
margin: 0 auto;
padding: 24px 15px;
display: grid;
column-gap: 30px;
grid-template-columns: repeat(12, 1fr);
}
@media screen and (max-width: 1024px) {
#primary {
grid-column: span 8;
}
#sidebar {
grid-column: span 4;
}
}
@media screen and (max-width: 768px) {
.woocommerce .wooWrapper {
grid-template-columns: repeat(1, 1fr);
}
#primary {
grid-column: span 1;
}
#sidebar {
grid-column: span 1;
}
}
.course-info-message {
font-size: 24px;
color: var(--white);
}
.saison-header {
margin-bottom: 24px;
}
.saison-header h3 {
font-size: 24px;
color: var(--yellow);
text-align: center;
margin: 0;
}
.course-locations {
display: grid;
column-gap: 30px;
grid-template-columns: repeat(2, 1fr);
margin-bottom: 24px;
}
.course-location {
font-size: 24px;
color: var(--white);
}
.location-name {
font-weight: 600;
}
.view-all-wrapper {
display: flex;
justify-content: center;
}
.course-not-available {
font-size: 24px;
color: var(--white);
text-align: center;
}
.view-all-wrapper a {
background-color: var(--yellow);
color: var(--brown);
padding: 10px 20px;
display: flex;
border-radius: 5px;
font-size: 24px;
transition: all 0.5s;
}
.view-all-wrapper a:hover {
background-color: var(--white);
}
.term-jonglierkurse li.product_cat-jonglierkurse img,
.term-jonglierkurse li.product_cat-jonglierkurse .price {
display: none !important;
}
.term-jonglierkurse li {
justify-content: flex-start !important;
text-align: left !important;
}
@media screen and (max-width: 768px) {
.saison-header h3 {
font-size: 24px;
}
.course-locations {
grid-template-columns: repeat(1, 1fr);
}
.course-location {
text-align: center;
}
} a:focus-visible,
button:focus-visible,
input[type="button"]:focus-visible,
input[type="submit"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
[role="button"]:focus-visible {
outline: 1px dotted var(--brown) !important;
outline-offset: 2px;
}
.cuw-offers {
max-width: 350px;
}
.bg-siderbar-brown {
background: var(--brown);
color: var(--white);
}
#coupon_code {
min-width: 150px;
}
body,
html {
scroll-behavior: smooth;
margin: 0;
padding: 0;
color: var(--brown);
line-height: 1.6em;
font-weight: 400;
font-family: "Noto Sans";
}
a {
color: var(--brown);
}
p {
margin: 8px 0;
}
* {
box-sizing: border-box;
}
img {
max-width: 100%;
height: auto;
}
.woocommerce-products-header {
position: relative !important;
left: auto !important;
top: auto !important;
}
.fullwidthimg {
width: 100%;
}
.fullwidthimg img {
width: 100%;
border: 10px solid var(--yellow);
}
.mainWrapper {
width: 100%;
max-width: 1250px;
padding: 20px 15px 64px 20px;
margin: 0 auto;
}
.vollbelegtbtn,
.now_sold {
background-color: var(--red);
display: inline-block;
padding: 5px 15px;
border-radius: 20px;
color: var(--white);
}
.stock.in-stock {
background-color: var(--green);
display: inline-block;
padding: 5px 15px;
border-radius: 20px;
color: var(--white) !important;
}
#sidebar ul {
padding: 0;
}
#sidebar ul ul {
padding: 0 0 0 20px;
}
#sidebar .wp-block-columns {
padding: 10px;
font-size: 13px;
}
.kontakt-teaser p {
margin: 0 0 8px;
}
#sidebar .wp-block-columns .wp-block-columns {
padding: 0;
}
#sidebar .wp-block-heading {
margin-top: 0;
}
.elementor-editor-active .logo {
display: none;
}
.input-text,
input[type="email"],
input[type="password"],
input[type="search"],
input[type="text"],
input[type="url"],
textarea {
font-family: "Noto Sans";
padding: 5px 0.6180469716em;
font-size: 16px;
outline: 0;
border: 1px solid #ccc;
background: #f3faeb;
-webkit-appearance: none;
border-radius: 2px;
box-sizing: border-box;
}
.small-title {
margin-bottom: 0 !important;
width: auto !important;
}
.gallery-item {
margin: 0 !important;
}
.gallery-item img {
border: 0 !important;
}
.bggelb {
background: var(--yellow) !important;
color: var(--brown) !important;
}
select {
width: 100%;
border: 3px solid #ddd;
padding: 0.55em 2em 0.7em 1em;
background-color: var(--white);
background-image: url(//jonglier-mit-mir.at/wp-content/themes/jongler/img/arrowdown.svg);
background-size: 14px;
background-position: calc(100% - 15px);
background-repeat: no-repeat;
font-weight: 900;
text-transform: uppercase;
color: var(--brown);
}
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 0;
font-size: 1em;
width: 100%;
}
.diagonal-tag {
background: var(--green);
color: var(--white);
padding: 5px 10px;
font-size: 20px;
font-weight: 600;
margin: 0 auto 48px auto;
display: flex;
transform: rotate(-2deg);
text-align: center;
justify-content: center;
}
.button_top {
position: fixed;
bottom: 10px;
right: 10px;
display: none;
background: var(--green);
padding: 0;
z-index: 111;
}
#formeltern input[type="text"],
#formeltern input[type="email"] {
margin: 10px 0;
width: 100%;
background: var(--white);
}
#formeltern input[type="submit"] {
width: 100%;
padding: 10px 0;
text-align: center;
background: var(--green);
color: var(--white);
border: none;
margin: 10px 0;
text-transform: uppercase;
cursor: pointer;
font-size: 20px;
}
@media screen and (max-width: 768px) {
.elementor-section.elementor-section-height-full {
height: 50vh;
}
.content-area {
width: 100%;
padding: 0;
}
#sidebar {
width: 100%;
margin: 0 0 50px 0;
}
#sidebar ul {
margin: 0;
padding: 0;
}
.single-product .woocommerce-message {
display: flex;
flex-direction: column-reverse;
gap: 16px;
}
.single-product .woocommerce-message a {
text-align: center;
}
}
@media screen and (max-width: 600px) {
.coupon {
display: flex;
align-items: stretch;
}
}