#buy-form button {
  padding: 1em;
  border: none;
  border-radius: 30px;
  background-color: #f28b2a;
  color: #ffffff;
  cursor: pointer;
  font-size: medium;
  font-weight: bold;
  display: block;
  margin: auto !important;
  min-width: 10em;
  
}

#buy-form button:disabled {
  border: 1px solid #f28b2a;
  background-color: #f28b2a44;
  color: #f28b2a;
  cursor: default;
}

.hidden {
  max-height: 0 !important;
  overflow: hidden;
}

.tier-info {
  background-color: #ffe4c74d;
  padding: 1.5em;
  border-radius: 10px;
  margin: 0.5em 0;
  width: 100%;
}

.tier-info ul {
  list-style-type: none;
  padding-left: 0;
}

.tier-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

.tier-info li i {
  margin-right: 0.5em;
  color: #f28b2a;
  width: 20px;
  justify-content: flex-end;
}

.tier-info li i::after {
  content: " ";
}

#what-tools-title {
  max-height: 100vh;
  transition: max-height 1s ease-in;
}

.tool-selectors {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-around;
  max-height: 100vh;
  transition: max-height 1s ease-in;
  overflow: hidden;
  margin: 1em auto !important;
}

.tool-group {
  border-radius: 10px;
  padding: 10px;
  flex: 1;
  overflow: inherit;
  background-color: white;
  box-shadow: 0 0 10px 0 #00000033;
  margin: 13px;
}

.tool-group h3 {
  text-align: center;
  margin: 5px 0 16px;
}

.tool-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  align-items: center;
  overflow: inherit;
}

.tool-options label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  width: 50px;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
}

.tool-options label:hover {
  border-color: #f28b2a;
}

.tool-options input[type="radio"] {
  display: none;
}

.tool-options label:has(input[type="radio"]:checked){
  border: 1px solid #f28b2a;
  background-color: #f28b2a33;
}

.tool-options i {
  font-size: xx-large;
  color: #f28b2a;
}

.tool-options img {
  max-width: 40px;
  max-height: 40px;
}


.tool-options > label[title] {
  position: relative;
}

.tool-options > label[title]:hover::after {
  content: attr(title);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #cccccc;
  padding: 5px;
  font-size: 0.8em;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 6px #0000001a;
}

.other-input {
  grid-column: span 3;
  display: flex;
  width: 15ch;
  height: 2rem;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  outline: none;
}

.other-input:focus {
  border: 1px solid #f28b2a;
}

.pilot-benefits {
  display: flex;
  gap: 10px;
}

.pilot-benefits div {
  flex: 1;
}

.pilot-benefits ul li div{
  display: flex;
  align-items: flex-start;
  flex: 1;
}


#buy-form-wrapper {
  align-content: center;
}

#contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 15px;
}

#buy-form > div > label {
  display: flex;
  max-width: 40ch;
  justify-content: space-between;
}

#buy-form > div > label > input{
  display: inline-flex;
  min-width: 30ch;
}


h2#thank-you {
  text-align: center;
  margin: 0;
  opacity: 1;
  transition: opacity 1s;
}

.collapsed {
  opacity: 0 !important;
  transition: opacity 1s;
}

#neo-logo {
  aspect-ratio: 1;
  width: 150px; 
  margin: 0 auto; 
  display: block;
}

.tool-group.missing {
  border: 2px solid red;
}

@media (width <= 768px) {
  #buy-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }

  #buy-form > div {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }

  #buy-form > div > label {
    min-width: auto;
  }

  #buy-form > div > input {
    min-width: auto;
    width: 100%;
  }

  .tool-selectors {
    flex-direction: column;
    gap: 20px;
  }

  .tool-group {
    margin: 10px auto;
    width: 90%;
  }

  .tool-options label {
    width: 40px;
    height: 40px;
  }

  .tool-options img {
    max-width: 30px;
    max-height: 30px;
  }
}