
 body {
    
}
/**===Base Typo===**/




.display {
  font-size: 40px;
}

a {
   color: #c03;
   text-decoration: none;
   transition: color .3s ease-out;
}

a:hover {
   color: #c03;
   text-decoration: underline;
}


/**===HEADER===**/
header {
   background: #c03;
   height:60px;
   position: fixed;
  width: 100%;
  z-index: 1000;
  transition: top 0.4s;
  top: 0;
  }
header .logo {
   display: flex;
   height: 100%;
}

header .logo img {
   height: 60px;
}

/**@media (min-width: 1360px) {
  header {
    height:80px;
    transition: top 0.3s;
  }

  header .logo img{
    height: 80px;
  }
}**/

.bg-r {
  background-image: radial-gradient(100% 70% at right center, #111 -50%,#000 75%);
}

.bg-l {
  background-image: radial-gradient(100% 70% at left center, #111 -50%,#000 75%)
}
/**===FLEXIKON===**/
.flexikon-link {
  display: flex;
  justify-content: space-between;
  color: #fff;
  padding: 1rem 10px;
  transition: padding 0.3s ease-out, color 0.3s ease;
  max-width: 350px;
  margin: auto;
}

.flexikon-link:hover {
  text-decoration: none;
  padding: 1rem 5px

}

.flexikon-link span {
  font-size:1.25rem
}
.flexikon-link .chevron {
  height: 1.5rem
}

.flexikon-link .chevron img{
  height: 100%
}

@media (min-width: 768px) {
  .flexikon-link span {
    font-size:1.75rem
  }
}

/**===FOOTER===**/
footer .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer nav ul {
  list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

footer nav ul li {
  display: inline-block;
  margin: 0 10px;
  padding: 5px 0;
}

footer nav ul li a {
  color: #fff
}
@media (min-width: 570px) {
  footer nav ul {
    flex-direction: row;
  }
}

/**===Language Selector===**/
.language-selector button {
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
}

.language-selector button:focus {
  border: none;
  outline: none;
}

.language-selector .selected {
  display: flex;
  align-items: center
}



.country-flag {
  height:40px;
  width: 40px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-right: 10px;
}
.flag-de {
  background-image: url(../img/flag_germany.svg);
}

.flag-uk {
  background-image: url(../img/flag_uk.svg);
}

/**===Channel Teaser===**/
.channel-teaser {
  display: flex;
  align-items: center;
}

.channel-teaser .channel-icon {
  margin-right: 20px
}

.channel-teaser .channel-icon img {
  height:100px
}


/**===Slider Community Progress===**/

.slider-community-progress .progress-icon {
  height: 60px;
  margin-bottom: 1.25rem;
}
.slider-community-progress .progress-slide {
  text-align: center
}

.slider-community-progress .slick-list.draggable {
  overflow: hidden;
}

.slider-community-progress ul.progress-steps {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0 auto;
  justify-content: center;
}
.slider-community-progress ul.progress-steps button{
  border: 0;
  background: #222;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow:visible;
  transition: .1s ease-out;
  z-index: 2;
  position: relative;
}

.slider-community-progress ul.progress-steps button:focus{
  outline: none
}
.slider-community-progress ul.progress-steps li {
  margin-right: 10px;
  position: relative;
}

.slider-community-progress ul.progress-steps li.slick-active button {
  background: #9c3
}

.slider-community-progress ul.progress-steps li:before {
  content: " ";
   width: 30px;
   height: 7px;
   background: #222;
   position: absolute;
   top: 50%;
   left: -50%;
   transform: translateY(-50%);
   z-index: 1;
}

.slider-community-progress ul.progress-steps li:nth-child(1)::before {
  display: none;
}

.slider-community-progress ul.progress-steps li button .progress-step-icon {
  width: 90%;
}

@media (min-width: 375px) {
  .slider-community-progress ul.progress-steps button{
     width: 40px;
     height: 40px;
  }

  .slider-community-progress ul.progress-steps li button .progress-step-icon {
    width: 22px;
  }
}
@media (min-width: 768px) {
  .slider-community-progress ul.progress-steps li {
     margin-right: 20px;
  }

  .slider-community-progress ul.progress-steps button{
     width: 50px;
     height: 50px;
  }
}


/**===Product Buy Card===**/
.product-box .product-img {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.product-box .product-img img {
  width: 100%;
  max-width: 300px;
}

.net-price {
  font-weight: 700;
}
/**===Slick===**/
.slick-track {
  display: flex
}

.slick-list {
  overflow: hidden;
}

.slick-dots {
  display: flex;
  padding-left: 0;
  justify-content: center;
}

.slick-dots li {
  display: inline-block
}

.slick-dots li button {
  font-size: 0;
  width: 18px;
  height: 18px;
  border-radius: 20px;
  border: none;
  outline: none;
  margin: 0px 5px;
  transition: transform .3s ease-in-out, background .3s ease-in-out;
  cursor: pointer;
  background: #666;
}

.slick-dots li.slick-active button {
  background: #888;
  transform: scale(1.2);
}

/**===PRELOADER===**/

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}
/**===SCROLLWHEEL===**/
.scrollwheel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 50;
}

.scrollwheel img {
  width: 50px;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translate(-50%, 0);
}
/**===GDPR===**/
.gdpr-disclaimer {
  background-color: rgba(24,24,24,0.9);
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height:1.3em
}

@media (min-width: 768px) {
  .gdpr-disclaimer {
      flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .gdpr-disclaimer {
      background-color: rgba(24,24,24,0.5);
      color: #fff;
      position: fixed;
      bottom: 20px;
      right: 20px;
      left: auto;
      width: 100%;
      max-width: 748px;
      padding: 10px;
      backdrop-filter: blur(10px);
      gap: 20px;
  }
}

.pre-footer-features {
    max-width: 440px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/**===Contact===**/
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  background: #222;
  display: flex;
  align-content: center;
  justify-content: center;
  margin-right: 10px;
  
}

.contact-box {
  max-width: 420px;
  /*margin: auto;*/
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  color: #fff;
  cursor: pointer;
}

.contact-box:hover {
  text-decoration: none;
  color: #fff;
}

.contact-box h3 {
  margin-bottom:0
}

.blackpage-modal {
  display: flex;
  align-items: center;
  position: fixed;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  right: 0;
  z-index: 99999;
}

.contact-modal .adress-body>span {
  display: block;
}


.blackpage-modal .modal-close {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

.blackpage-modal .modal-close img {
  width:20px
}

.blackpage-modal .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}


.contact-mail img {
  height: 20px;
  margin-right: 10px;
}

.contact-mail a {
  color: #fff
}
/***Download Manual***/
.download-manual {
  display: flex;
  max-width: 420px;
  color: #fff;
  align-items: center;
}

.download-manual:hover {
  text-decoration: none;
  color: #fff;
}
.download-icon {
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 10px;
}

.download-icon span {
  width: 40px;
  text-align: center;

}

.downloads {
  list-style: none;
  padding-left: 0;
}

.downloads a {
  display: flex;
  color: #fff;
  font-weight: 700;
  align-items:center;
  text-decoration: none
}

.downloads a img {
  height: 20px;
  margin-right: 10px;
}

.downloads li {
  margin: 20px 0;
}

.downloads li:first-of-type {
  margin-top: 0;
}

.downloads li:last-of-type {
  margin-bottom: 0;
}