/** ---------------- General ---------------- **/
.s-roobert {
  font-family: 'Roobert', sans-serif;
}
.s-teodor {
  font-family: 'Teodor', sans-serif;
}

.s-no-scroll {
  overflow: hidden;
}

.s-flex {
  display: flex;
}
.s-flex-col {
  flex-direction: column;
}

.s-items-center {
  align-items: center;
}

.s-justify-center {
  justify-content: center;
}

.s-mr-1 {
  margin-right: 4px;
}
.s-mr-2 {
  margin-right: 8px;
}
.s-mr-3 {
  margin-right: 12px;
}
.s-mr-4 {
  margin-right: 16px;
}
.s-mr-5 {
  margin-right: 20px;
}

.s-ml-3 {
  margin-left: 12px;
}

.s-mb-2 {
  margin-bottom: 8px;
}

.s-mb-4 {
  margin-bottom: 16px;
}
.s-mb-5 {
  margin-bottom: 20px;
}

.s-expand {
  flex-grow: 1;
}

.s-fs-16 {
  font-size: 16px;
}

.lh-33 {
  line-height: 33px;
}

.s-container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 12px;
}
.s-navbar-brand {
  color: rgba(0, 0, 0, 0.9);
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.s-navbar {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  background-color: white;
  height: 100%;
  max-height: 68px;
  z-index: 100;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/** for wp logged in users, display the menu below the admin bar **/
body.admin-bar .s-navbar {
  top: 30px;
}

.s-pointer {
  cursor: pointer;
}
/** ---------------- menu general ---------------- **/


.s-navbar * {
  box-sizing: border-box;
}

.s-menu {
  --sqn-color-1: #2f50f5;
  --sqn-color-2: #132644;
  --sqn-color-3: #c3fcff;
  --sqn-color-4: #ffb6a8;
  font-size: 18px;
  line-height: 27px;
}

.s-btn,
.s-btn.a {
  color: white;
  background-color: var(--sqn-color-1);
  border-radius: 25px;
  padding: 6px 15px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
}

.s-btn:hover,
.s-btn.a:hover {
  color: white;
  background-color: var(--sqn-color-2);
}

.s-menu {
  width: 100%;
}

.s-relative {
  position: relative;
}

/** ---------------- L1 ---------------- **/
.s-menu-l1 {
  height: 100%;
}

.s-menu-l1-item,
.s-menu-l1-item a {
  color: var(--sqn-color-1);
  transition: color 0.3s;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
}

.s-menu-l1-item:hover,
.s-menu-l1-item a:hover,
.s-search:hover {
  color: var(--sqn-color-2) !important;
}

.s-menu-l1-item.active {
  color: var(--sqn-color-2);
}

.s-search {
  color: var(--sqn-color-1);
  transition: color 0.3s;
  cursor: pointer;
}

.s-pointer {
  cursor: pointer;
}

.s-hidden {
  display: none;
}

.s-navbar-brand .nav-logo-big {
  max-width: 200px;
}

.s-navbar-brand .nav-logo-small {
  height: 46px;
  width: 46px;
}

.sq-feder-small {
  width: 45px;
}
/** ---------------- L2 ---------------- **/

.s-menu-l2-container {
  color: white;
  background-color: var(--sqn-color-2);
  padding: 15px 0;
  display: none;
}

.s-menu-l2-container.active {
  display: block;
}

.s-menu-l2-container a,
.profile-btn {
  color: white !important;
  text-decoration: none !important;
}

.s-menu-l2 {
  justify-content: center;
  align-items: center;
}

.s-menu-l2-item {
  margin: 0 15px;
  transition: color 0.3s;
  cursor: pointer;
}

.s-menu-l2 {
  display: none;
}
.s-menu-l2.active {
  display: flex;
}

.s-menu-l2-item:hover,
.s-menu-l2-item a:hover {
  color: var(--sqn-color-4) !important;
}

.profile-btn:hover {
  color: white !important;
}


.button--loading {
    cursor: default;
    background-color: rgba(211,211,211,0.8) !important;
    position: relative;
}
.elementor-page .button--loading::after {
    cursor: default !important;
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #2f50f5;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}
@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

/** ---------------- L3 ---------------- **/

.s-menu-l3-container {
  position: absolute;
  top: 25px;
  left: 0;
  background-color: var(--sqn-color-2);
  padding: 20px;
  padding-top: 25px;
  border-bottom-right-radius: 25px;
  width: auto;
  white-space: nowrap;
  display: none;
}

.s-menu-l3-container.active {
  display: block;
}

.s-menu-l3-container a {
  display: block;
  margin-bottom: 10px;
}

/** ---------------- Mobile ---------------- **/

.s-menu-mobile-container {
  display: none;
}

.s-menu-mobile #menu-mobile-toggle:checked ~ .s-menu-mobile-container,
.mobile-submenu.active {
  display: block;
}

.s-menu-mobile-container,
.mobile-submenu {
  background-color: #132644;
  color: white;
  z-index: 101;
  overflow-y: auto;

  position: fixed;
  top: 0;
  right: 0;
  max-width: 450px;
  width: calc(100vw - 30px);
  height: 100%;
  padding: 15px;

  max-width: 450px;
  width: calc(100vw - 30px);
  height: 100%;
  opacity: 1;
}

.s-menu__overlay {
  background-color: rgba(103, 103, 103, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  display: none;
}

.s-menu-mobile #menu-mobile-toggle:checked ~ .s-menu__overlay {
  display: block;
}

.s-menu-mobile-container a {
  text-decoration: none;
  color: white !important;
}

/** ---------------- Ratgeber ---------------- **/
.profile-btn.ratgeber, 
.toggle-register-login.ratgeber {
  display: none; /** will be shown by javascript **/
}
.toggle-register-login {
  position: relative;
}

/** ---------------- Media ---------------- **/
.s-mobile-only,
.nav-logo-big {
  display: none;
}

.nav-logo-small {
  display: block;
}

body {
  padding-top: 68px;
}

@media (max-width: 1199px) {
  .s-menu-l1,
  .s-menu-l2-container {
    display: none !important;
  }
  .s-mobile-only {
    display: block;
  }
}

@media (min-width: 1200px) {
  .s-menu-mobile-toggle {
    display: none;
  }

  body.menu-active {
    padding-top: 120px;
  }

  .nav-logo-small {
    display: none;
  }

  .nav-logo-big {
    display: block;
  }
}

/** on shop show only burger menu, specific overrides **/
/** -------------------------------------------- **/
body.theme-flatsome {
  padding-top: 0 !important;
}
html:has(body.theme-flatsome.s-no-scroll) {
  overflow: hidden;
  background-color: #132644;
  scrollbar-gutter: stable;
}

.theme-flatsome .s-menu-mobile-toggle {
    display: block;
}
.theme-flatsome .s-menu-l1,
.theme-flatsome .s-menu-l2-container { 
  display: none !important;
}
.theme-flatsome .s-mobile-only {
  display: block;
}
.theme-flatsome .s-navbar {
    position: static;
    background-color: transparent;
    box-shadow: none !important;
}
.theme-flatsome .s-navbar-brand,
.theme-flatsome .toggle-register-login.s-mobile-only,
.theme-flatsome input[type='checkbox']+label.s-menu__overlay,
.theme-flatsome input[type='checkbox']#menu-mobile-toggle
{
  display:none;
}

.theme-flatsome .fa-times {
  color: white;
}
/** -------------------------------------------- **/



/** Elementor **/
.elementor-element-265a7bb {
  padding: 0 !important;
}