.dropdown-content {
    display: none;
  }
  
  .dropdown-content.show {
    display: block;
  }
  /* Reset default form styles */
  form {
    margin: 0;
    padding: 0;
  }
  
  /* Container for form */
  .form-req {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Form title */
  h1 {
    text-align: center;
    text-transform: uppercase;
  }
  
  /* Form label */
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  /* Form input fields */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 100%;
    padding: 8px;
    height: 50px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
  }

  /* Form file input fields */
  input[type="file"] {
    margin-bottom: 10px;
  }
  
 
  
  /* Form submit button hover effect */
  input[type="submit"]:hover {
    background-color:var(--thm-base);
  }
  
  /* Form textarea for payment terms and how it works */
  textarea {
    height: 100px;
    resize: vertical;
  }
  .submitform {
    width: 600px;
    height: 100%;
    margin: 10px auto;
  }
  
  .submitform  h1 {
    text-align: center;
    margin: 40px 0px;
  }
  
  .submitform  form {
    margin-bottom: 30px;
  }
  
  .submitform  label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .submitform  input[type="text"],
  .submitform  input[type="tel"],
  .submitform input[type="email"],
  .submitform input[type="file"],
  .submitform input[type="hidden"],

  .submitform  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }
 
  
  .submitform input[type="submit"] {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0px;
    background-color: var(--thm-base);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    margin: 20px 0px 50px 0px ;
    transition: background-color 0.3s ease;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: fadeIn;
  }
  
  .submitform input[type="submit"]:hover {
    animation-name: none;

    background-color:var(--thm-black);
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .file-input-wrapper {
    position: relative;
  }
  
  .remove-file {
    position: absolute;
    right: 30px;
    padding-bottom: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  
  .submitform label span.required {
    color: red; /* set the color of the star to red */
    margin-left: 3px; /* add some spacing between the label text and the star */
    font-size: 16px; /* set the font size of the star */
    vertical-align: middle; /* align the star vertically with the label text */
  }


  .submitform button{
    color: #007bff;
    margin: -20px 0px 10px 0px;
    background: #fff;

  }
  .submitform button:hover{
    color:var(--thm-base);
    background: white;

  }
 .outfile h1 {
    margin-top: 100px;
  }
  .ourfile{
    width: 800px;
    margin: 10px auto;
  }
  
  .ourfile input[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    margin: 20px 0px 50px 0px ;
  }
  .remove-file {
    display: none;
  }

/* Make form responsive for mobile */
@media (max-width: 767px) {
  .container {
    padding: 10px;
  }

  h1 {
    font-size: 24px;
  }

  label {
    font-size: 14px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    font-size: 14px;
  }

  input[type="submit"] {
    font-size: 16px;
  }

  .submitform {
    width: 100%;
    padding: 10px;
  }

  .ourfile {
    width: 100%;
    padding: 10px;
  }

  .outfile h1 {
    margin-top: 50px;
  }
}
/* ---------------------- */
.fillet-class{
  margin-top: 0px;
  color: black;
 
}
.fillet-class .fillet-option{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  
}

.fillet-check{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  margin: 25px 0px 0px 0px;
}
.fillet-check label{
  padding-left: 20px;
  padding-right: 20px;

}
.fillet-option label{
  padding-left: 20px;
  padding-right: 20px;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  border-radius: 4px;
  outline: none;
  box-shadow: inset 0px 1px 1px white, 3px 3px 9px rgba(0,0,0,0.5);
  background-color: #c5c5c5;
  /* border: 1px solid var(--thm-base); */
  cursor: pointer;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type="checkbox"]:checked {
  background-color:var(--thm-base);

}
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
 
}

input[type="radio"]:checked::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 3px;
  background-color:var(--thm-base);
}
label input[type="checkbox"] {
  margin-right: 10px;
}
label input[type="radio"] {
  margin-right: 10px;
}
label {
  display: inline-block;
  padding-left: 10px;
}

a.animated-button:link, a.animated-button:visited {
  position: relative;
  display: block;
  margin: 30px auto 0;
  padding: 14px 15px;
  color: #fff;
  font-size:14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: .08em;
  border-radius: 0;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
a.animated-button:link:after, a.animated-button:visited:after {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 150%;
  z-index: -1;
  -webkit-transition: all 0.75s ease 0s;
  -moz-transition: all 0.75s ease 0s;
  -o-transition: all 0.75s ease 0s;
  transition: all 0.75s ease 0s;
}
a.animated-button:link:hover, a.animated-button:visited:hover {
  color: #FFF;
  text-shadow: none;
}
a.animated-button:link:hover:after, a.animated-button:visited:hover:after {
  height: 450%;
}
a.animated-button:link, a.animated-button:visited {
  position: relative;
  display: block;
  margin: 30px auto 0;
  padding: 14px 15px;
  color: #fff;
  font-size:14px;
  border-radius: 0;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: .08em;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}


/* Thar Buttons */

a.animated-button.thar-one {
  color: #fff;
  cursor: pointer;
  display: block;
  position: relative;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
a.animated-button.thar-one:hover {
  color: #000 !important;
  background-color: transparent;
  text-shadow: none;
}
a.animated-button.thar-one:hover:before {
  bottom: 0%;
  top: auto;
  height: 100%;
}
a.animated-button.thar-one:before {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 0px;
  width: 100%;
  z-index: -1;
  content: '';
  color: #000 !important;
  background: var(--thm-base);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
#filterButton {
  
padding: 5px;
font-size: 20px;
font-weight: 700;
cursor: pointer;
border: none;
background-color: transparent;
color: rgb(0, 0, 0);
}
#filterButton:hover{
color: white;
}

.filter-indicators{
  width: 150px;

margin-top: 20px;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);

}
.center-screen {
  display: flex;
  justify-content: center;
  align-items: center;
   /* Adjust this value as needed */
}