/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Volker Niehus
Description: A plain-vanilla &amp; lightweight theme for Elementor page builder
Version: 1.1.1676880158
Updated: 2023-02-20 09:02:38

*/



.wrapperanimate{
    width:200px;
    height:60px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
}
.circle{
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background-color: #252e7f;
    left:15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle{
    0%{
        top:60px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40%{
        height:20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top:0%;
    }
}
.circle:nth-child(2){
    left:45%;
    animation-delay: .2s;
}
.circle:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.shadow{
    width:20px;
    height:4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top:62px;
    transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow{
    0%{
        transform: scaleX(1.5);
    }
    40%{
        transform: scaleX(1);
        opacity: .7;
    }
    100%{
        transform: scaleX(.2);
        opacity: .4;
    }
}
.shadow:nth-child(4){
    left: 45%;
    animation-delay: .2s
}
.shadow:nth-child(5){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.wrapperanimate span{
    position: absolute;
    top:75px;
	font-family: 'Lato';
    font-size: 20px;
    letter-spacing: 12px;
    color: #e30513;
    left:15%;
}




  .strassen-kalkulator {
    font-family: Arial, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* immer 3 gleich breite Spalten */
    gap: 0px 14px;
  }



  .panel {
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  }
  .panel h3 {
    margin: 0 0 14px 0;
    color: #252F7F;
  }
  
  #bmeth {
    font-weight: bold;
    color: #252F7F;
    border: 2px solid #252F7F;
    border-radius: 4px;
    background-color: #f3f3f3;
  }
  
  label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
    color: #34495e;
       font-size: 10px;
  }
  input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    margin-bottom: 15px;
  }
  input.warning {
    border-color: #e67e22;
    background-color: #fff3e0;
  }
  .hinweis {
    margin-top: 8px;
    padding: 8px 12px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 6px;
    font-size: 0.95em;
    color: #856404;
    display: none;
  }

  @media (max-width: 1024px) {
    .form-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Tablets */
    }
  }

  @media (max-width: 768px) {
    .form-grid {
      grid-template-columns: 1fr; /* 1 Spalte auf Smartphones */
    }
  }
  
  
.typ-auswahl {
  display: flex;
  gap: 20px;
}

.typ-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0px;
  border-radius: 8px;
}

.typ-option img {
  width: 90px;
  height: auto;
  margin-top: 10px;
}

/* Radio selbst verstecken */
.typ-option input {
  display: none;
}

/* Markierung wenn ausgewählt */
.typ-option input:checked + img {
  outline: 5px solid #252F7F;
  border-radius: 6px;
}


	
