/** Shopify CDN: Minification failed

Line 409:14 Expected identifier but found "{"
Line 409:15 Unexpected "{"
Line 409:23 Expected ":"

**/
:root {
 --color-black: #232323;
 --color-pink: #ff6393;
 --color-dark-pink: #df4775;
 --color-purple: #342a47;
 --color-blue: deepskyblue;
 --color-gray: #525252;
 --color-green: #bbe187;
 
 --transition-fast: 0.1s;
}
.header.swatch_title2 {
    margin-top: 30px;
}
.swatch_option.InputGroup {
 display: flex;
        height: 50px;
    width: 300px;
    justify-content: flex-start;
}
/** Upload **/

 .wrapper {
	 display: flex;
	 flex-direction: row;
	 flex-wrap: wrap;
	 align-items: center;
	 justify-content: flex-start;
   gap: 15px;
}
 
 .box {
	 display: block;
    min-width: 125px;
    height: 125px;
    margin: 10px 0;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px #0000001f, 0 1px 2px #0000003d;
    transition: all .3s cubic-bezier(.25,.8,.25,1);
    overflow: hidden;
}
 .upload-options {
	position: relative;
    height: 35px;
    background-color: #000;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    transition: background-color ease-in-out .15s;
}
 .upload-options:hover {
	 background-color: #000;
}
 .upload-options input {
	 width: 0.1px;
	 height: 0.1px;
	 opacity: 0;
	 overflow: hidden;
	 position: absolute;
	 z-index: -1;
}
 .upload-options label {
	 display: flex;
	 align-items: center;
	 width: 100%;
	 height: 100%;
	 font-weight: 400;
	 text-overflow: ellipsis;
	 white-space: nowrap;
	 cursor: pointer;
	 overflow: hidden;
}
 .upload-options label:after {
           content: "+";
    position: absolute;
    font-size: 25px;
    color: #e6e6e6;
        top: 50%;
    left: 45%;
    z-index: 0;
    transform: translate(0, -50%);
}
 .upload-options label span {
	 display: inline-block;
	 width: 50%;
	 height: 100%;
	 text-overflow: ellipsis;
	 white-space: nowrap;
	 overflow: hidden;
	 vertical-align: middle;
	 text-align: center;
}
 .upload-options label span:hover i.material-icons {
	 color: lightgray;
}
 .js--image-preview {
	height: 90px;
    width: 90px;
    position: relative;
    overflow: hidden;
    background-image: url(/cdn/shop/files/Design_ohne_Titel_6_170a9f72-97ea-4e00-a659-6040c687ffa6.png?v=1678390110);
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 18px;
}

 .js--image-preview.js--no-default::after {
	 display: none;
}
 .js--image-preview:nth-child(2) {
	 background-image: url('http://bastianandre.at/giphy.gif');
}
 i.material-icons {
	 transition: color 100ms ease-in-out;
	 font-size: 2.25em;
	 line-height: 55px;
	 color: white;
	 display: block;
}
 .drop {
	 display: block;
	 position: absolute;
	 background: rgba(95, 158, 160, 0.2);
	 border-radius: 100%;
	 transform: scale(0);
}
 .animate {
	 animation: ripple 0.4s linear;
}
 @keyframes ripple {
	 100% {
		 opacity: 0;
		 transform: scale(2.5);
	}
}
 
/** Upload **/
/** Products Faq's **/
.engle-stil .color-swatch {
  width: 95px !important;
  height: 95px !important;
}
.faq_products .accordion {
  background-color:transparent;
  color: #444;
  cursor: pointer;
  padding: 10px 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
  border-bottom: 1px solid #ccc;
}
.faq_products button.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 22px;
}
.faq_products button.accordion.active:after {
    content: "\2212";
}
.faq_products .active, .faq_products .accordion:hover {
  background-color: #c7c7c729; 
  border: none;
}
.faq_products .panel {
  padding: 10px 18px;
  display: none;
  background-color: white;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}
.faq_products .panel p {
    margin: 0 0 0px;
}
.faq_products {
    text-align: center;
    margin: 30px 30px;
}
.faqs_content {
    width: 100%;
    padding: 20px 250px;
  text-align: left;
}
/** End Products Faq's **/
/**
 * 1. Hides the input from view
 * 2. Ensures the element does not consume any space
 */

.swatch_option input[type="radio"] {
  visibility: hidden; /* 1 */
  height: 0; /* 2 */
  width: 0; /* 2 */
}
.loox-rating {
    cursor: pointer;
}
.swatch_option label {
  display: flex;
  flex: auto;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  color: #000;
  padding: 5px 10px;
  box-shadow: 0 0 0 1px #e8e8e1;
  transition: color --transition-fast ease-out, 
              background-color --transition-fast ease-in;
  user-select: none;
 margin-right: 8px;
   margin-left: -8px;
}

.swatch_option label:last-of-type {
 margin-right: 0;
}

.swatch_option input[type="radio"]:checked + label {
  background-color: #000;
    color: #fff;
}

/* .swatch_option input[type="radio"]:hover:not(:checked) + label {
 background-color: grey;
 color: #fff;
} */
.teeinblue-product-7976393081097 .keyfactsliste{display:none}
.cust_review {
    display: flex;
    justify-content: center;
    gap: 5px;
  font-size: 12px;
}
div#deliverymessage {
    text-align: center;
}
span#CompareSvtxt-6666218635397 {
    display: none;
}
.flex-ad {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}
.phone-selection {
    margin-bottom: 20px;
}
.model-selection{
    margin-bottom: 20px;
}
.avail-phone input[type="radio"] {
  display:none;
}
.avail-phone label {
  padding: 12px;
  display: inline-block;
  border: 1px solid grey;
  cursor: pointer;
}
.avail-phone .blank-label {
  display: none;
}
.avail-phone input[type="radio"]:checked + label {
  background: #000;
  color: #fff;
}
fieldset.avail-phone, fieldset.avail-model {
    border: none;
    padding: 0;
}

/** Phone case **/
ul.del_inst {
    margin: 0px 0 5px 40px;
}
.special_del img {width:35px;}
.special_del {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  gap:5px;
}
.special_del p {
        font-size: 14px;
    color: green;
    font-weight: 600;
    margin-top: 12px;
    margin-left: 2px;
 
}
.template-product .add-to-cart{
	background: #5bc22a !important;
}
.extra_width{
	padding: 15px 30px 15px !important;
}
.template-cart .btn.btn--no-animate.cart__checkout {
    width: 100%;
  background: #5bc22a !important;
}
.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip-top {
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
}
div#extra_img {
    margin-top: 0px;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
/* 
   Swatches Styles
*/
.color-swatch{
	overflow-y: none !important;
}
.swatch { 
 margin-bottom: -30px;
}

/* Label */
.swatch .header {
  margin: 0.5em 0;
}
/* Hide radio buttons.*/
.swatch input { 
  display:none;
}
.Hintergrund-option .swatch label {
   min-width:75px !important; 
  height:75px !important;
   border-radius:0px;
}
.Hintergrund-option .swatch {
    margin-bottom: 0px;
}
.Hintergrund-option .swatch input:checked + label:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    border: 3px solid;
    border-color: #fff;
}
.Hintergrund-option .swatch input:checked + label {
  box-shadow: 0 0 0 2px var(--colorTextBody);
  border:none;
} 
.swatch label {
  /* Rounded corners */
  -webkit-border-radius:2px;
  -moz-border-radius:2px;
  border-radius:2px;
  /* To give width and height */
  float:left;
  /* Color swatches contain no text so they need to have a width. */
  min-width:45px !important; 
  height:45px !important;
  /* No extra spacing between them */
  margin:0;
  /* The border when the button is not selected */
  border:#ccc 1px solid;
  /* Background color */
  background-color:#ddd;
  /* Styling text */
  font-size:13px;
  text-align:center;
  line-height:{{ height }};
  white-space:nowrap;
  text-transform:uppercase;
  border-radius:50px;
}
.swatch .Aqua label,.swatch .Feld label ,.swatch .Polar label ,.swatch .Sky label  {
  min-width:95px !important; 
  height:95px !important;
}
.swatch-element label { padding:0 10px; }
.color.swatch-element label { padding:0; }
/* Styling selected swatch */
/* Slightly raised */
.swatch input:checked + label {
  -webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.8);
  -moz-box-shadow:0px 1px 2px rgba(0,0,0,0.8);
  box-shadow:0px 1px 2px rgba(0,0,0,0.8);
  border:2px solid #222;
} 
.swatch .swatch-element {
  -webkit-transform:translateZ(0); /* webkit flicker fix */
  -webkit-font-smoothing:antialiased; /* webkit text rendering fix */
  /* Spacing between buttons */
  margin:0px 10px 10px 0;
  /* To position the sold out graphic and tooltip */
  position:relative;
}
/* Image with the cross in it */
.crossed-out { position:absolute; width:100%; height:100%; left:0; top:0; }
.swatch .swatch-element .crossed-out { display:none; }
.swatch .swatch-element.soldout .crossed-out { display:block; }
.swatch .swatch-element.soldout label {
  filter: alpha(opacity=60); /* internet explorer */
  -khtml-opacity: 0.6;      /* khtml, old safari */
  -moz-opacity: 0.6;       /* mozilla, netscape */
  opacity: 0.6;           /* fx, safari, opera */
}

.swatch.error {
  background-color:#E8D2D2!important;
  color:#333!important;
  padding:1em;
  border-radius:5px;
}
.swatch.error p {
  margin:0.7em 0;
}
.swatch.error p:first-child {
  margin-top:0;
}
.swatch.error p:last-child {
  margin-bottom:0;
}
.swatch.error code {
  font-family:monospace;
}
.swatch_title h2 {
    text-align: center;
    font-family: monospace;
    font-size: 24px;
    font-weight: bolder;
    letter-spacing: 0px;
    color: #000;
  margin-bottom: -10px;
}
.pop_val{ display:none;}


@media only screen and (max-width: 767px){
/*   .swatch_option.InputGroup{margin-left: -3px;} */
  .wrapper {
   gap: 5px;
}
  .box {
    min-width: 115px;
    height: 115px;
  }
  .js--image-preview {
    height: 85px;
    width: 85px;
    margin-left:16px;}
  .upload-options {
    height: 30px;
  }
 
  .faq_products {
    margin: 30px 10px;
  }
  .faqs_content {
    padding: 20px 0px;
  }
  .faq_products .accordion {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
  }
  .tooltip-top {
    left: 100%;
  }
  .tooltiptext{
  	display:none;
  }
  .pop_val{ display:block; color: gray;  }
  .special_del p {
    margin-left: 10px;
}
  #ProductSelect-6656816939141-option-1.variant-input-wrap label {
    font-size: 14px;
    padding:7px;
  }
  .special_del img {width:45px;}
  
}
@media (min-width: 768px) and (max-width: 1024px){
     .faqs_content {
    padding: 20px 0px;
  }
}
  .tee-block.tee-product-price p{color:grey;margin:0;    font-size: 12px;}
.tee-block.tee-product-price {
    gap: 10px;
}