/* 
Theme Name: H&K Elementor Theme
Theme URI: https://www.internet-marketing-agentur.com
Description: H&K Elementor Hello Child 
Author: IMA Team
Author URI: https://www.internet-marketing-agentur.com
Template: hello-elementor
Version: 1.0.1
Text Domain: h&k
*/

html {
    font-size: 62.5%;
}

body {
    background-color: #1E1E1E !important;
}


ul {
    padding-inline-start: 0px;
    padding-left: 20px !important;
}

.site-container {
    overflow-x: hidden;
    background-color: #F2F2F2;
    border: 2px solid #1E1E1E;
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
}

/* HEADER */

.jet-mobile-menu__body>.jet-mobile-menu__list>.jet-mobile-menu__items>.jet-mobile-menu__item--sub-trigger-item>.jet-mobile-menu__list {
    padding: 10px 0px 10px 10px;
    position: relative;
}

.jet-mobile-menu__body>.jet-mobile-menu__list>.jet-mobile-menu__items>.jet-mobile-menu__item--sub-trigger-item>.jet-mobile-menu__list::before {
    background-color: #DFDFDF;
    content: "";
    display: block;
    height: calc(100% - 40px);
    left: 0;
    position: absolute;
    top: 20px;
    width: 1px;

}

.jet-mobile-menu__body>.jet-mobile-menu__list>.jet-mobile-menu__items>.jet-mobile-menu__item--sub-trigger-item>.jet-mobile-menu__list .jet-mobile-menu__item--sub-trigger-item {
    border-bottom: none;
}

.jet-mobile-menu__body>.jet-mobile-menu__list>.jet-mobile-menu__items>.jet-mobile-menu__item--sub-trigger-item>.jet-mobile-menu__item-inner>.jet-dropdown-arrow svg[aria-hidden="true"] {
    display: none;
}

.elementor-icon{
    font-size: 24px;
}

/* END HEADER */

/* KEYVISUAL */

#keyvisual .swiper-pagination{
    position: absolute;
    bottom: 50px;
    right: unset;
    left: 70%;
    top: unset;
}

#keyvisual .swiper-pagination-bullet{
    height: 2px;
    width: 56px;
    border-radius: 0px;
    background-color: #B5B5B5;
    opacity: 1;
}
#keyvisual .swiper-pagination-bullet-active{
    background-color: #f2f2f2;
    opacity: 1;

}

@media(max-width: 1000px)
{
    #keyvisual .swiper-pagination{
        left: unset;
        right: -20%;
    }
}

@media(max-width: 768px){
    #keyvisual .swiper-pagination{
        position: relative;
        bottom: -20px;
        left: 50%;
        right: 50%;
    }

    #keyvisual .swiper-pagination-bullet{
        width: 30px;
    }

    #keyvisual .swiper-pagination-bullet-active{
        background-color: #0f45bd;
    }
}
/* END KEYVISUAL */

/* PRODUKTSEITE */

#product-container .has_eae_slider {
    position: relative;
}

#product-container .has_eae_slider:not(:last-child):after  {
    background: linear-gradient(6deg, #4B4B4B 21.35%, rgba(31, 29, 29, 0.00) 99.48%);
    content: '';
    height: 100%;
    position: absolute;
    right: 20px;
    top: 0;
    transform: rotate(180deg);
    width: 1px;
}

#product-back-image{
    display: none;
}

.elementor-video{
    height: 100%;
}

.custom-checkbox-container{
    display: flex;
    z-index: 100;
}

.custom-checkbox-text{
    color: #111;
    font-family: Oswald;
    font-size: 18px;
    font-weight: 700;
    padding: 0px 12px;
}

.custom-checkbox-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
  }
  
  .custom-checkbox-switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .custom-checkbox-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
    border: 2px solid #000;
  }
  
  .custom-checkbox-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: #000;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .custom-checkbox-slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  
  /* Rounded sliders */
  .custom-checkbox-slider.custom-checkbox-round {
    border-radius: 34px;
  }
  
  .custom-checkbox-slider.custom-checkbox-round:before {
    border-radius: 50%;
  }

/* END PRODUKT CONTAINER HOMEPAGE*/


/* SOCIALFEED */

.socialfeed-grid {
    display: grid;
    grid-template-columns: repeat(4, 260px);
    grid-gap: 30px;
}

@media (max-width: 1199px) {
    .socialfeed-grid {
        grid-template-columns: repeat(3, 260px);
    }
}

@media (max-width: 1023px) {
    .socialfeed-grid {
        grid-template-columns: repeat(2, 260px);
    }
}

@media (max-width: 680px) {
    .socialfeed-grid {
        grid-template-columns: repeat(1, 260px);
    }
}

.socialfeed-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%; /* Updated width for responsiveness */
    max-width: 260px; /* Maximum width for each box */
    height: 260px; 
    border-radius: 16px; 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.socialfeed-box .socialfeed-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.60) 0%, rgba(17, 17, 17, 0.60) 100%);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #DEDEDE;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.socialfeed-box:hover .socialfeed-overlay {
    opacity: 1;
}

.socialfeed-date,
.socialfeed-content,
.socialfeed-name {
    font-family: 'Open Sans', sans-serif;
    line-height: 140%;
    color: #DEDEDE;
    font-weight: 400;
}

.socialfeed-date{
    font-size: 14px;
}

.socialfeed-content{
    font-size: 16px;
}

.socialfeed-name {
    font-size: 14px;
    font-weight: 700;
}

.socialfeed-box .socialfeed-content,
.socialfeed-box .socialfeed-container {
    display: none;
}

.socialfeed-box:hover .socialfeed-content,
.socialfeed-box:hover .socialfeed-container {
    display: block;
}

.socialfeed-container{
    position: relative;
}

.socialfeed-icon{
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
}

.instagram{
    background-image: url(/wp-content/uploads/2023/06/icon-instagram-white-transparent.svg);
}

.facebook{
    background-image: url(/wp-content/uploads/2023/06/icon-facebook-white-transparent.svg);
}

.tiktok{
    background-image: url(/wp-content/uploads/2023/06/tiktok-white.svg);
}

/* END SOCIALFEED */

/* FOOTER */
@media(min-width: 768px){

.footer-title{
    position: relative;
}

.footer-title::before{
    content: '';
    width: 100%;
    height: 1px;
    background-color: #111;
    position: absolute;
    right: 0;
    top: 12px;
}

}

/* END FOOTER */

/* Taxonomy Filter */

button[data-filter="allgemein"] {
    display: none !important;

  }

/* END Taxonomy Filter */

/* Archiv Download List */

.archiv-downloads{
}

.archiv-downloads ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0px !important;
    margin: 30px 0px;
}

.archiv-downloads ul li {
    flex: 1 0 calc(50% - 20px); /* 50% for 2 items per row, adjust as needed */
    margin: 10px 10px 30px 0px; /* half of the gap between the items */
}

@media screen and (max-width: 767px) {
    .archiv-downloads ul li {
        flex: 1 0 100%; /* full width on small screens */
    }
}

.archiv-downloads-anker{
    font-size: 4rem;
    color: #111;
    font-family: Oswald;
}

.archiv-downloads-title{
    font-size: 3rem;
    font-family: Oswald;
    padding-bottom: 15px;
}

.archiv-downloads-item{
    font-size: 1.8rem;
    font-family: Open Sans;
    position: relative;
    padding-left: 40px;
    transition: color 0.3s ease;
}

.archiv-downloads-item:hover{
    color: #0f45bd;
}

.archiv-downloads-item::before{
    content: '';
    width: 30px;
    height: 28px;
    background-image: url('/wp-content/themes/h&k/assets/img/icon-download-broschuere.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
}

.elementor-lightbox .elementor-video-container .elementor-video-landscape iframe{
    height: 660px;
    max-width: fit-content;
    width: 100%;
}

@media (max-width: 900px) {
    .elementor-lightbox .elementor-video-container .elementor-video-landscape iframe{
        height: 360px;
    }
}

@media (max-width: 600) {
    .elementor-lightbox .elementor-video-container .elementor-video-landscape iframe{
        height: 300px;
    }
}

.gform_confirmation_message{
    font-family: Open Sans;
    color: green;
    font-size: 22px;
}


.mlp-language-switcher-item,
.multilingualpress_language_switcher{
    list-style: none;
}

.multilingualpress_language_switcher{
    padding: 0px 30px 50px 0px;
    display: block;
    height: 100%;
    width: 100%;
}

.mlp-language-switcher-nav ul{
    background: white;
    padding: 15px 25px !important;
    font-size: 1.8rem;
    font-family: "Oswald";
    width: fit-content;
    position: absolute;
    top: 40px;
    right: 0px;
    border-radius: 20px;
    display: none;
    flex-direction: column-reverse;
}

.widgettitle{
    display: none;
}

.mlp-language-switcher-item__link img{
    width: 20px;
}


.language-switcher{
    display: block;
    width: 28px;
    height: 28px;
    background-image: url('./assets/img/icon-world.svg');
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    position: relative;
}

@media(max-width: 1024px){
    .language-switcher{
        width: 26px;
        height: 26px;
    }
}

.language-switcher:hover .mlp-language-switcher-nav ul{
    display: flex;
}

.mlp-language-switcher-item:last-of-type{
    padding-bottom: 10px;
}

.jet-mobile-menu__toggle svg{
    fill: #F2F2F2;
}

.mlp-language-switcher-item--current-site{
    text-decoration: underline;
    text-underline-offset: 5px;
}