:root {
    --main_color: #ffffff;
    --akzent_color: #808080;
    --second_color: #B3B3B3;
    --hover_color: #f34564;
    --text_color: #000000;
    --grey_color: #A7A7A7;
    --buttoncolor: yellowgreen;
    --hovercolor: darkgreen;
    --first_background: #333333;
    --second_background: #eeeeee;
    --Font_Awesome: "Font Awesome 6 free"


}
a{
    color: var(--buttoncolor);
}

.sp-main-body .sp-module .sp-module-content > li > a{
    color: var(--buttoncolor);
}

.tipps-tricks #sp-main-body, .wozu-mom #sp-main-body{
    font-family: Comic Sans MS;
    font-size: 18px;
}
a:hover,a:checked, a:active, a:focus, #sp-main-body .sp-module ul > li > a:hover{
	color: var(--hovercolor);
}

/**** HEADER ****/
#sp-header{
    background: var(--first_background);
    margin-top: 50px;
    z-index: 0;
    padding: 14px 0 24px 0;
}

#sp-header .logo{
    text-align: center;
    max-width: 30%;
    margin-left: auto;
    margin-right: auto;
}

#sp-header .sp-default-logo {
    display: block !important;
    margin-left: 100%;
    max-width: 100% !important;

}

/****  BEWERTUNGEN ***/
#visformcontainer{
    width: 50% !important;
}


.rating-stars {
  direction: rtl; /* Sterne rechts nach links anzeigen */
  display: inline-flex;
}

.rating-stars input[type="radio"] {
  display: none; /* Radio-Buttons unsichtbar */
}

.rating-stars label {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
}

/* Hier kommt der Stern über ::before */
.rating-stars label::before {
  content: "★";
}

/* Wenn angeklickt oder davor liegende Labels */
.rating-stars input[type="radio"]:checked ~ label {
  color: gold;
}



.rating-output::before {
  content: "★★★★★";       /* 5 Sterne */
  letter-spacing: 5px;     /* Abstand */
  background: linear-gradient(90deg, gold calc(var(--rating) * 20%), #ccc calc(var(--rating) * 20%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
}



/** Bewertungskarten **/

/** Swiper Container **/
.reviews-swiper-wrapper {
  position: relative;
  margin: 40px 0;
  padding: 0 80px; /* Platz für Pfeile */
}

/** Swiper Grundstruktur **/
.reviews-swiper {
  width: 100%;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch; /* sorgt dafür, dass alle Slides gleich hoch sind */
}

.swiper-slide.review-card {
  display: flex;
  height: auto !important;
  box-sizing: border-box;
  border: 1px solid white;
}

/** Karte **/
.review-card-content {
  display: grid;
  grid-template-rows: auto 40px 1fr auto; /* feste Reihen: Header | Sterne | Text | Autor */
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  width: 100%;
}

/** Header **/
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  min-height: 48px; /* gleiche Höhe für Titel+Datum Block */
}

.review-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: calc(1.3em * 2); /* Höhe für 2 Zeilen */
}

.review-date {
  font-size: 0.85rem;
  color: #777;
}

/** Sterne **/
.review-stars {
  font-size: 1.4rem;
  line-height: 40px; /* gleiche Höhe */
  display: flex;
  align-items: center;
  margin: 0; /* Abstand rausnehmen */
}

.review-stars .fa-solid {
  color: gold;
}

.review-stars .fa-regular {
  color: #ccc;
}

/** Text **/
.review-text {
  margin-bottom: 10px;
  color: #333;
  overflow: hidden;
}

/** Autor **/
.review-author {
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
  text-align: right;
  align-self: end; /* immer nach unten */
}

/** Navigation außerhalb **/
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  color: var(--buttoncolor);
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;

}

.swiper-button-next::after, .swiper-button-prev::after {
    color: #00ff00;
}
.swiper-button-prev { left: 20px; }
.swiper-button-next { right: 20px; }


.swiper-button-prev { margin-left: -60px; }
.swiper-button-next { margin-right: -60px; }


/**** MENU ***/
#sp-menu{
    background:  var(--text_color);
    padding-top: 0.5%;
    padding-bottom: 0%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 11;
    height: 50px;
}

#sp-menu .container{
    max-width: 90%;
}
#sp-menu .sp-module ul > li {
    border-bottom: 0 none;
    display: inline;
    float: left;
    margin-right: 10px;
    font-style: normal;
    padding-left: 1%;
    padding-right: 1%;
}
div#sp-menu-horizontal .sp-module ul > li > a{
    color: var(--main_color);
}

div#sp-menu-horizontal .sp-module ul > li > a:hover, div#sp-menu-horizontal .sp-module .navi > li.current.active:active > a:active{
    color: var(--buttoncolor);
}
div#sp-menu-horizontal .sp-module .navi > li.current > a {
  color: #00ff00;
  font-weight: bold;
}

div#sp-menu-horizontal .sp-module ul > li > a.menu_green {
    color: #00ff00;
    font-weight: bold;
}
#sp-menu div#sp-menu-horizontal{
    margin-top: auto;
    margin-bottom: auto;
}

div#sp-menu-horizontal .menu{
    margin-top: auto;
    margin-bottom: auto;
}






.nav .current.active::marker{
    display: none;
    color: red;
}
.nav > li > a:focus, .nav > li > a:hover{
    background: transparent;
}
.navi:hover{
    background: transparent;
}
.navi > li > a {
    color: var(--main_color);
    text-transform: uppercase;
    font-size: 14px;
}

/*** SIDE MENU ***/
.sp-module .sidebar-nav{
	flex-direction: column;
}

/** Counter **/
#sp-counter{
margin-top: auto;
}

/** Language Switcher **/
#sp-language-switcher{
    margin-top: auto;
    margin-bottom: auto;
}

/** LOGIN Module ***/
.login_fixed{
    position: absolute;
    left: 5%;
    top: 2%; 
}
/** SWISS MADE **/
.img_swiss_made{
    width: 7vw;
    position: absolute;
    right: 3%;
    bottom: 10%;
    }
/**** Product Overview ***/
#sp-bild1 .sp-module-title{
    text-align: center;
}

/*** Spruch ***/
#sp-spruch{
   /* background: radial-gradient(#fff00069, #fff00069, #ff000096); */
    background: radial-gradient(#eee, #eee, grey);
    padding-top: 0%;
    padding-bottom: 0%;
}

#sp-spruch #sp-text span {
    
        font-size: 2.5em;
        vertical-align: middle;
        font-family: "Comic Sans MS";
        font-weight: bold;
      }
    
/*** Produktnavigation ***/
#sp-main-body .product-neighbours a.next-page {
    background: url(../images/vmgeneral/next_16x16.png) no-repeat right;
    padding-right: 30px;
    line-height: 20px;
    float: right;
    color: orange;
  }
  #sp-main-body .product-neighbours a.previous-page {
    background: url(../images/vmgeneral/previous_16x16.png) no-repeat left;
    padding-left: 30px;
    line-height: 20px;
    float: left;
    color: orange;
  }

  #sp-main-body .hikashop_products_pagination{
    display: none;
  }

  /*** Zurück zum Shop ***/
  .back_to_shop{
    background: var(--buttoncolor);
    padding: 10px;
    font-weight: bold;
    border-radius: 20px;
  }
  a.back_to_shop {
    color: #000000;
  }


/**** PARTNER ****/
#sp-partner{
    margin-top: 10px;
}

#sp-partner-1{
    background: var(-first_background);
}
#sp-partner-2{
    background: var(--second_background);
}
#sp-partner #sp-partner-2{
    display: contents;
    align-items: center;
    justify-content: center;
}

.blog .helix-social-share{
    display: none;
}

.img_partner {
    display: flex;
    justify-content: center;
    align-items: center;
}
/*** FOOTER ***/
#sp-footer {
    background: var(--second_color);
}


/*** Buttons ***/
.popup_button {
    background: var(--akzent_color);
    color: var(--main_color);
    padding: 10px;
    border-radius: 30px;
    margin-top: 10px;
  }
a:hover.popup_button {
    color: var(--main_color);
    font-weight: bold;
}

.btn-primary, .sppb-btn-primary, #sp-main-body #jreview-form button.jbtn, #sp-main-body #jreview-form .jbtn {
	border-color: var(--buttoncolor);
	background: var(--buttoncolor);
}

.btn-primary:hover, .sppb-btn-primary:hover, #sp-main-body #jreview-form button.jbtn:hover, #sp-main-body #jreview-form .jbtn:hover{
	font-weight: bold;
	border-color: var(--hovercolor);
	background: var(--hovercolor);
}

.btn-primary:hover, .sppb-btn-primary:hover {
    background-color: var(--hovercolor);
}

.button_style{
    background-color: var(--buttoncolor);
    border-radius: 8px;
    color: #000000;
    padding: 10px;
    font-weight: bold;
}
.button_style:hover{
    background-color: var(--hovercolor);
    color: white;
}

/** Login/Registration Pages Buttons **/
.hikashop_checkout_login  #data_register_registration_method .btn{
    background: #ccc;
    border: 1px solid black;
    border-radius: 0px;
    width: 100%;

}
.hikashop_checkout_login #data_register_registration_method .btn.active{
    background: var(--buttoncolor);
    border: 1px solid black;
}
.hikashop_checkout_login #data_register_registration_method .btn:hover{
    background: var(--buttoncolor);
    border: 1px solid black;
}

.hikashop_checkout_login .btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child){
    margin-left: 0px;
}



/** Aufzählungszeichen **/
#sp-main-body li::marker{
    color: var(--buttoncolor);
}
	
/*** Extra Pages ***/

/*** HOME SEITE ***/
#form3more-informationlbl{
    font-weight: bold;
}

#visformcontainer{
    margin-left: 25%;
}
.contactform #visformcontainer{
    margin-left: 0%;
}
/*** KONTAKT***/
.form-message, .form-message-label{
    margin-bottom: 5%;
    margin-top: 5%;
}
/*** BEWERTUNGEN ***/
.form_date{
    display: none;
}

#jreview-form ._starRating input:checked ~ label, #jreview-form ._starRating label:hover, #jreview-form ._starRating label:hover ~ label{
    color: var(--buttoncolor);
}

#jreview-form ._starRating input:checked ~ label, #jreview-form ._starRating label:hover ~ label{
    color: var(--buttoncolor);
}

#jreview-form ._starRating input:checked + label:hover, #jreview-form ._starRating input:checked ~ label:hover, #jreview-form ._starRating input:checked ~ label:hover ~ label, #jreview-form ._starRating label:hover ~ input:checked ~ label{
    color: var(--hovercolor);
}

.jlexreview .sum-star ._star .fill, #jreview-listing .reviewBlock ._star.fullStar ._star_inner, .jlexreview ._jfill{
    background: var(--buttoncolor);
}

/*** SHOP ***/
/*** Cart Module ***/
.minicart-header .cart-info .cart-title{
    display: none;
}


#sp-warenkorb{
    margin-top: auto;
    margin-bottom: auto;
}

.hikashop_small_cart_checkout_link::before {
    content: "\f07a";
    font-family: var(--Font_Awesome);
    font-weight: 900;
    display: inline-block;
    color: var(--buttoncolor);
}

a.hikashop_small_cart_checkout_link {
    color: var(--buttoncolor);
}

#hikashop_cart_module div.hikashop_cart_dropdown_content {
    background: var(--text_color);
    color: var(--main_color);
    border: none;
}
div#hikashop_cart_module a{
    color: var(--buttoncolor);
}
div.hikashop_product_quantity_div.hikashop_product_quantity_change_div_default{
    display: none;
}

.dropdownCart-btn{
    color: var(--main_color);
    margin-left: 30%;
}

/*** CART LAYOUT ***/
.hikashop_checkout_payment_images{
	display: flex;
flex-direction: row;
column-gap: 10px;
}

.attention_cart{
    color: red;
    font-size: small;
    font-weight: bold;
    text-align: center;
}

/*** Product Details ***/

.shop-page p, .shop-page span{
    font-size: larger;
}

.hikashop_product_price_per_unit p.mwst{
    font-size: small;
}
.sp-column .productdetails .vm-product-container .vm-product-details-container .itemSocialBlock{
    display: none;
}

.view-productdetails .zoomContainer {
    display: none;
    }

.productdetails .vm-product-container .vm-product-details-container .product_sku span {
    font-weight: 100;
    text-transform: none;
}
.productdetails .vm-product-container .vm-product-details-container .product_sku .art_number{
    font-weight: bold;
}

/*** CPANEL ***/
#sp-component .hikashop_cpanel_cart_div{
    display: none;
}

a .hika_cpanel_product_name, .hikashop_cart_product_name{
    font-weight: bold;
}

/*** LOGIN ***/
.form-login__submit button[class*="plg_system_webauthn_login_button"]{
    display: none;
}

.userdata input#modlgn-username.input-small, .userdata input#modlgn-passwd.input-small{
    width: auto;
    display: inline;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    padding: 8px 2px;
    min-height: 16px;
    outline: none;
    line-height: 16px;
}
 
.userdata.input-append .add-on, .userdata.input-prepend .add-on{
display: inline-block;
width: auto;
height: 20px;
min-width: 16px;
padding: 4px 5px;
font-size: 14px;
font-weight: normal;
line-height: 20px;
text-align: center;
text-shadow: 0 1px 0 #fff;
background-color: #eee;
border: 1px solid #ccc;
margin-left: -1px;
margin-right: -1px;
}

#hikashop_checkout_login_form .hasTooltip{
    display: none;
}

.hikashop_checkout_address input[type="radio"]:checked, .hikashop_shipping_methods_table input[type="radio"]:checked, .hikashop_payment_methods_table input[type="radio"]:checked, .hikashop_checkout_terms input[type="checkbox"]:checked {
    accent-color: var(--hovercolor);
}


/*** IMAGE DISPLAY GALERIE ***/
div#sb-container{
margin-top: 50px;
}

div#sb-container #sb-title-inner {
    height: 30px;
    line-height: 26px;
    color: black;
    font-size: large;
    background: white;
}

div#sb-container #sb-body{
    background: white;
    height: calc(100% - 50px);
}
div#sb-container #sb-loading{
    background: white;
}
div#sb-container #sb-loading-inner span{
    display: none;
}
div#sb-container div#sb-info {
    z-index: 9999;
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100% !important;
}
div#sb-container div#sb-wrapper-inner{
    height: auto;
    border: none;
    background: white;
}
#sb-info, #sb-info-inner {
  height: 30px !important;
}
#sb-nav a {
  display: block;
  float: right;
  height: 25px !important;
  width: 25px !important;
  margin-left: 3px;
  cursor: pointer;
  font-family: var(--Font_Awesome);
  font-weight: 900;
  font-size: medium;

}
#sb-info #sb-nav-next, #sb-info #sb-nav-close, #sb-info #sb-nav-previous{
    background-image: none;
}
#sb-info #sb-nav-next {
    margin-left: -6px;
    position: absolute;
    top: 50%;
    right: 0%;
    width: 50px;
    height: 50px;

}
#sb-info #sb-nav-next:before {
	content: "\f04e";

}

#sb-info #sb-nav-close:before {
	content: "\f00d";
}

#sb-info #sb-nav-previous:before {
	content: "\f04a";
}

#sb-info #sb-nav-previous {
    float: left;
    margin-left: 0px;
    position: absolute;
    top: 50%;
    left: 0%;
}

#sb-nav {
  float: none !important;
  height: 16px;
  padding: 2px 0;
  width: 100% !important;
}
#sb-counter {
  display: none !important;
}

/*** FORUM ***/
#kunena div.a {
    display: none;
}
#Kunena+div {
    display: none;
}

#kunena.layout .center{
    margin-bottom: 10px;
    text-align: left;
}

.input-append .add-on, .input-prepend .add-on{
    min-width: 132px;
    height: 35px;
}

/*** Contact ***/
.visCSSlabel{
    font-size: 1.5em;
}
/*** WOZU MOM ***/
.title_background{
    width: 50%;
    margin-left: 0px;
    margin-right: auto;
    background: var(--buttoncolor);
    font-size: larger;
    padding: 5px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
}
.title_spruch_top, .title_spruch_bottom{
    border-radius: 6px;
    padding-bottom: 10px;
    padding-top: 10px;
    background: #808080;
    color: #ffffff;
}
h3.title_spruch_bottom, h3.title_spruch_top{
    font-family: Comic Sans MS;
}
.title_spruch_top{
    border-bottom: 3px solid var(--buttoncolor);
}
.title_spruch_bottom{
    border-top: 3px solid var(--buttoncolor);
    margin-bottom: 0px;
}
.point_out{
    background: #b2b2b266;
    width: 80%;
    border-radius: 8px;
    border: 3px solid var(--buttoncolor);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    font-family: 'Comic Sans MS';

}
/*** Tipps und Tricks ***/

/* Text Expander */

.test_accordion {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  
  .row {
    display: flex;
  }
  .row .col {
    flex: 1;
  }
  .row .col:last-child {
    margin-left: 1em;
  }
  
  /* Accordion styles */
  .accordion_uneven{
    width: 50%;
    margin-left: 0px;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
  .accordion_even {
    width: 50%;
    margin-left: auto;
    margin-right: 0px;
  }
  .tabs {
    border-radius: 8px;
    overflow: hidden;
    /*box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);*/
  }
  
  .tab {
    width: 100%;
    color: white;
    overflow: hidden;
    margin-bottom: 5px;
    border-radius: 10px;
  }
  .tab-label {
    display: flex;
    justify-content: space-between;
    padding: 0.5em;
    background: var(--buttoncolor);
    font-weight: bold;
    cursor: pointer;
    font-size: larger;
    /* Icon */
  }
  .tab-label:hover {
    background: darkgreen;
  }
  .tab-label::after {
    content: "❯";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.35s;
  }
  .tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: white;
    transition: all 0.35s;
  }
  .tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
  }
  .tab-close:hover {
    background: var(--buttoncolor);
  }
  
  .test_accordion:checked + .tab-label {
    background: var(--hovercolor);
  }
  .test_accordion:checked + .tab-label::after {
    transform: rotate(90deg);
  }
  .test_accordion:checked ~ .tab-content {
    max-height: 100vh;
    padding: 1em;
  }  

 
/** CHECKOUT **/

#sp-main-body .hikashop_wizardbar ul li.hikashop_cart_step_current{
    color: var(--buttoncolor);
    background: #9acd3224;
}

#sp-main-body .hkbadge-current{
    background: var(--hovercolor);
}

#hikashop_checkout_form .price{
    float: right;
}

#hikashop_checkout_form .hikashop_cart_product_price_value .price{
    float: none;
}

.hikashop_cart_step_current .hikashop_wizardbar ul li.hikashop_cart_step_current .hikashop_chevron::before {

    border-left: 14px solid #f1f;

}


@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5){
#sp-logo {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
}

@media only screen and (max-device-width: 900px){
    /**** HEADER ****/
#sp-header{
    background: var(--first_background);
    margin-top: 50px;
    z-index: 0;
    padding: 14px 0 24px 0;
}

#sp-header .logo{
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#sp-header img.logo-image{
    height: 50px;
    margin-top: -25px;
}

#sp-header .sp-default-logo {
    display: block !important;
    margin-left: 100%;
    max-width: 100% !important;

}
/**** MENU ***/

}
#sp-menu{
    background:  var(--text_color);
    padding-top: 0.5%;
    padding-bottom: 0%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 11;
    height: 50px;
}

#sp-menu .container{
    max-width: 90%;
}
#sp-menu .sp-module ul > li {
    border-bottom: 0 none;
    display: inline;
    float: left;
    margin-right: 10px;
    font-style: normal;
    padding-left: 1%;
    padding-right: 1%;
}
div#sp-menu-horizontal .sp-module ul > li > a{
    color: var(--main_color);
}

div#sp-menu-horizontal .sp-module ul > li > a:hover, div#sp-menu-horizontal .sp-module .navi > li.current.active:active > a:active{
    color: var(--buttoncolor);
}
#sp-menu div#sp-menu-horizontal{
    margin-top: auto;
    margin-bottom: auto;
}

div#sp-menu-horizontal .menu{
    margin-top: auto;
    margin-bottom: auto;
}





.nav .current.active::marker{
    display: none;
    color: red;
}
.nav > li > a:focus, .nav > li > a:hover{
    background: transparent;
}
.navi:hover{
    background: transparent;
}
.navi > li > a {
    color: var(--main_color);
    text-transform: uppercase;
    font-size: 14px;
}

/*** SIDE MENU ***/
.sp-module .sidebar-nav{
	flex-direction: column;
}

/** Counter **/
#sp-counter{
margin-top: auto;
}

/** Language Switcher **/
#sp-language-switcher{
    margin-top: auto;
    margin-bottom: auto;
}

/** SWISS MADE **/
.img_swiss_made{
    width: 20vw;
    position: absolute;
    right: 3%;
    bottom: 10%;
    }
/**** Product Overview ***/
#sp-bild1 .sp-module-title{
    text-align: center;
}

/*** Spruch ***/
#sp-spruch{
   /* background: radial-gradient(#fff00069, #fff00069, #ff000096); */
    background: radial-gradient(#eee, #eee, grey);
    padding-top: 0%;
    padding-bottom: 0%;
}

#sp-spruch #sp-text span {
    
        font-size: 1.5em;
        vertical-align: middle;
        font-family: "Comic Sans MS";
        font-weight: bold;
      }
    
/*** Produktnavigation ***/
#sp-main-body .product-neighbours a.next-page {
    background: url(../images/vmgeneral/next_16x16.png) no-repeat right;
    padding-right: 30px;
    line-height: 20px;
    float: right;
    color: orange;
  }
  #sp-main-body .product-neighbours a.previous-page {
    background: url(../images/vmgeneral/previous_16x16.png) no-repeat left;
    padding-left: 30px;
    line-height: 20px;
    float: left;
    color: orange;
  }

  #sp-main-body .hikashop_products_pagination{
    display: none;
  }

  /*** Zurück zum Shop ***/
  .back_to_shop{
    background: var(--buttoncolor);
    padding: 10px;
    font-weight: bold;
    border-radius: 20px;
  }
  a.back_to_shop {
    color: #000000;
  }


/**** PARTNER ****/
#sp-partner{
    margin-top: 10px;
}

#sp-partner-1{
    background: var(-first_background);
}
#sp-partner-2{
    background: var(--second_background);
}
#sp-partner #sp-partner-2{
    display: contents;
    align-items: center;
    justify-content: center;
}

.blog .helix-social-share{
    display: none;
}

.img_partner {
    display: flex;
    justify-content: center;
    align-items: center;
}
/*** FOOTER ***/
#sp-footer {
    background: var(--second_color);
}


/*** Buttons ***/
.popup_button {
    background: var(--akzent_color);
    color: var(--main_color);
    padding: 10px;
    border-radius: 30px;
    margin-top: 10px;
  }
a:hover.popup_button {
    color: var(--main_color);
    font-weight: bold;
}

.btn-primary, .sppb-btn-primary, #sp-main-body #jreview-form button.jbtn, #sp-main-body #jreview-form .jbtn {
	border-color: var(--buttoncolor);
	background: var(--buttoncolor);
}

.btn-primary:hover, .sppb-btn-primary:hover, #sp-main-body #jreview-form button.jbtn:hover, #sp-main-body #jreview-form .jbtn:hover{
	font-weight: bold;
	border-color: var(--hovercolor);
	background: var(--hovercolor);
}

.btn-primary:hover, .sppb-btn-primary:hover {
    background-color: var(--hovercolor);
}

.button_style{
    background-color: var(--buttoncolor);
    border-radius: 8px;
    color: #000000;
    padding: 10px;
    font-weight: bold;
}
.button_style:hover{
    background-color: var(--hovercolor);
    color: white;
}

/** Login/Registration Pages Buttons **/
.hikashop_checkout_login  #data_register_registration_method .btn{
    background: #ccc;
    border: 1px solid black;
    border-radius: 0px;
    width: 100%;

}
.hikashop_checkout_login #data_register_registration_method .btn.active{
    background: var(--buttoncolor);
    border: 1px solid black;
}
.hikashop_checkout_login #data_register_registration_method .btn:hover{
    background: var(--buttoncolor);
    border: 1px solid black;
}

.hikashop_checkout_login .btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child){
    margin-left: 0px;
}

/** Aufzählungszeichen **/
#sp-main-body li::marker{
    color: var(--buttoncolor);
}
	
/*** Extra Pages ***/

/*** HOME SEITE ***/
#form3more-informationlbl{
    font-weight: bold;
}

#visformcontainer{
    margin-left: 25%;
}
.contactform #visformcontainer{
    margin-left: 0%;
}
/*** KONTAKT***/
.form-message, .form-message-label{
    margin-bottom: 5%;
    margin-top: 5%;
}
/*** BEWERTUNGEN ***/
#jreview-form ._starRating input:checked ~ label, #jreview-form ._starRating label:hover, #jreview-form ._starRating label:hover ~ label{
    color: var(--buttoncolor);
}

#jreview-form ._starRating input:checked ~ label, #jreview-form ._starRating label:hover ~ label{
    color: var(--buttoncolor);
}

#jreview-form ._starRating input:checked + label:hover, #jreview-form ._starRating input:checked ~ label:hover, #jreview-form ._starRating input:checked ~ label:hover ~ label, #jreview-form ._starRating label:hover ~ input:checked ~ label{
    color: var(--hovercolor);
}

.jlexreview .sum-star ._star .fill, #jreview-listing .reviewBlock ._star.fullStar ._star_inner, .jlexreview ._jfill{
    background: var(--buttoncolor);
}

/*** SHOP ***/
/*** Cart Module ***/
.minicart-header .cart-info .cart-title{
    display: none;
}


#sp-warenkorb{
    margin-top: auto;
    margin-bottom: auto;
}

.hikashop_small_cart_checkout_link::before {
    content: "\f07a";
    font-family: var(--Font_Awesome);
    font-weight: 900;
    display: inline-block;
    color: var(--buttoncolor);
}

a.hikashop_small_cart_checkout_link {
    color: var(--buttoncolor);
}

#hikashop_cart_module div.hikashop_cart_dropdown_content {
    background: var(--text_color);
    color: var(--main_color);
    border: none;
}
div#hikashop_cart_module a{
    color: var(--buttoncolor);
}
div.hikashop_product_quantity_div.hikashop_product_quantity_change_div_default{
    display: none;
}

.dropdownCart-btn{
    color: var(--main_color);
    margin-left: 30%;
}

/*** CART LAYOUT ***/
.hikashop_checkout_payment_images{
	display: flex;
flex-direction: row;
column-gap: 10px;
}

.attention_cart{
    color: red;
    font-size: small;
    font-weight: bold;
    text-align: center;
}

/*** Product Details ***/

.hikashop_product_price_per_unit p.mwst{
    font-size: small;
}
.sp-column .productdetails .vm-product-container .vm-product-details-container .itemSocialBlock{
    display: none;
}

.view-productdetails .zoomContainer {
    display: none;
    }

.productdetails .vm-product-container .vm-product-details-container .product_sku span {
    font-weight: 100;
    text-transform: none;
}
.productdetails .vm-product-container .vm-product-details-container .product_sku .art_number{
    font-weight: bold;
}

/*** CPANEL ***/
#sp-component .hikashop_cpanel_cart_div{
    display: none;
}

a .hika_cpanel_product_name, .hikashop_cart_product_name{
    font-weight: bold;
}

/*** LOGIN ***/
.form-login__submit button[class*="plg_system_webauthn_login_button"]{
    display: none;
}

.userdata input#modlgn-username.input-small, .userdata input#modlgn-passwd.input-small{
    width: auto;
    display: inline;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    padding: 8px 2px;
    min-height: 16px;
    outline: none;
    line-height: 16px;
}
 
.userdata.input-append .add-on, .userdata.input-prepend .add-on{
display: inline-block;
width: auto;
height: 20px;
min-width: 16px;
padding: 4px 5px;
font-size: 14px;
font-weight: normal;
line-height: 20px;
text-align: center;
text-shadow: 0 1px 0 #fff;
background-color: #eee;
border: 1px solid #ccc;
margin-left: -1px;
margin-right: -1px;
}

#hikashop_checkout_login_form .hasTooltip{
    display: none;
}

.hikashop_checkout_address input[type="radio"]:checked, .hikashop_shipping_methods_table input[type="radio"]:checked, .hikashop_payment_methods_table input[type="radio"]:checked, .hikashop_checkout_terms input[type="checkbox"]:checked {
    accent-color: var(--hovercolor);
}


/*** IMAGE DISPLAY GALERIE ***/
div#sb-container{
margin-top: 50px;
}

div#sb-container #sb-title-inner {
    height: 30px;
    line-height: 26px;
    color: black;
    font-size: large;
    background: white;
}

div#sb-container #sb-body{
    background: white;
    height: calc(100% - 50px);
}
div#sb-container #sb-loading{
    background: white;
}
div#sb-container #sb-loading-inner span{
    display: none;
}
div#sb-container div#sb-info {
    z-index: 9999;
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100% !important;
}
div#sb-container div#sb-wrapper-inner{
    height: auto;
    border: none;
    background: white;
}
#sb-info, #sb-info-inner {
  height: 30px !important;
}
#sb-nav a {
  display: block;
  float: right;
  height: 25px !important;
  width: 25px !important;
  margin-left: 3px;
  cursor: pointer;
  font-family: var(--Font_Awesome);
  font-weight: 900;
  font-size: medium;

}
#sb-info #sb-nav-next, #sb-info #sb-nav-close, #sb-info #sb-nav-previous{
    background-image: none;
}
#sb-info #sb-nav-next {
    margin-left: -6px;
    position: absolute;
    top: 50%;
    right: 0%;
    width: 50px;
    height: 50px;

}
#sb-info #sb-nav-next:before {
	content: "\f04e";

}

#sb-info #sb-nav-close:before {
	content: "\f00d";
}

#sb-info #sb-nav-previous:before {
	content: "\f04a";
}

#sb-info #sb-nav-previous {
    float: left;
    margin-left: 0px;
    position: absolute;
    top: 50%;
    left: 0%;
}

#sb-nav {
  float: none !important;
  height: 16px;
  padding: 2px 0;
  width: 100% !important;
}
#sb-counter {
  display: none !important;
}

/*** FORUM ***/
#kunena div.a {
    display: none;
}
#Kunena+div {
    display: none;
}

#kunena.layout .center{
    margin-bottom: 10px;
    text-align: left;
}

.input-append .add-on, .input-prepend .add-on{
    min-width: 132px;
    height: 35px;
}

/*** Contact ***/
.visCSSlabel{
    font-size: 1.5em;
}
/*** WOZU MOM ***/
.title_background{
    width: 90%;
    margin-left: 0px;
    margin-right: auto;
    background: var(--buttoncolor);
    font-size: larger;
    padding: 5px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
}
.title_spruch_top, .title_spruch_bottom{
    border-radius: 6px;
    padding-bottom: 10px;
    padding-top: 10px;
    background: #808080;
    color: #ffffff;
}
h3.title_spruch_bottom, h3.title_spruch_top{
    font-family: Comic Sans MS;
}
.title_spruch_top{
    border-bottom: 3px solid var(--buttoncolor);
}
.title_spruch_bottom{
    border-top: 3px solid var(--buttoncolor);
    margin-bottom: 0px;
}
.point_out{
    background: #b2b2b266;
    width: 98%;
    border-radius: 8px;
    border: 3px solid var(--buttoncolor);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    font-family: 'Comic Sans MS';

}
/*** Tipps und Tricks ***/

/* Text Expander */

.test_accordion {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  
  .row {
    display: flex;
  }
  .row .col {
    flex: 1;
  }
  .row .col:last-child {
    margin-left: 1em;
  }
  
  /* Accordion styles */
  .accordion_uneven{
    width: 90%;
    margin-left: 0px;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
  .accordion_even {
    width: 90%;
    margin-left: auto;
    margin-right: 0px;
  }
  .tabs {
    border-radius: 8px;
    overflow: hidden;
    /*box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);*/
  }
  
  .tab {
    width: 100%;
    color: white;
    overflow: hidden;
    margin-bottom: 5px;
    border-radius: 10px;
  }
  .tab-label {
    display: flex;
    justify-content: space-between;
    padding: 0.5em;
    background: var(--buttoncolor);
    font-weight: bold;
    cursor: pointer;
    font-size: larger;
    /* Icon */
  }
  .tab-label:hover {
    background: darkgreen;
  }
  .tab-label::after {
    content: "❯";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.35s;
  }
  .tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: white;
    transition: all 0.35s;
  }
  .tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
  }
  .tab-close:hover {
    background: var(--buttoncolor);
  }
  
  .test_accordion:checked + .tab-label {
    background: var(--hovercolor);
  }
  .test_accordion:checked + .tab-label::after {
    transform: rotate(90deg);
  }
  .test_accordion:checked ~ .tab-content {
    max-height: 100vh;
    padding: 1em;
  }  

 
/** CHECKOUT **/

#sp-main-body .hikashop_wizardbar ul li.hikashop_cart_step_current{
    color: var(--buttoncolor);
    background: #9acd3224;
}

#sp-main-body .hkbadge-current{
    background: var(--hovercolor);
}

#hikashop_checkout_form .price{
    float: right;
}

#hikashop_checkout_form .symbol{
    float: left;
    margin-left: 10%;
}

#hikashop_checkout_form .hikashop_cart_product_price_value .price{
    float: none;
}

.hikashop_cart_step_current .hikashop_wizardbar ul li.hikashop_cart_step_current .hikashop_chevron::before {

    border-left: 14px solid #f1f;

}

}