.section, .section-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.section input[type=text], .section-row input[type=text],
.section input[type=number],
.section-row input[type=number],
.section input[type=email],
.section-row input[type=email],
.section input[type=phone],
.section-row input[type=phone],
.section select,
.section-row select {
  border: none;
  padding: 10px 0;
  font-size: 1em;
  padding-left: 20px;
  width: 100%;
  background-color: white;
  border-radius: 1px;
}
.section input[type=text]:focus, .section-row input[type=text]:focus,
.section input[type=number]:focus,
.section-row input[type=number]:focus,
.section input[type=email]:focus,
.section-row input[type=email]:focus,
.section input[type=phone]:focus,
.section-row input[type=phone]:focus,
.section select:focus,
.section-row select:focus {
  box-shadow: 1px 1px 1px #d73c75;
}
.section input::-webkit-outer-spin-button, .section-row input::-webkit-outer-spin-button,
.section input::-webkit-inner-spin-button,
.section-row input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.section-row {
  flex-direction: row !important;
}

@media screen and (max-width: 730px) {
  .section-row {
    flex-wrap: wrap;
  }
}
.loading-container {
  min-height: 440px;
  justify-content: center;
}

.loading {
  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #d73c75; /* Blue */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  -webkit-animation: spin 1s cubic-bezier(0.43, 0.42, 0.26, 0.65) infinite;
          animation: spin 1s cubic-bezier(0.43, 0.42, 0.26, 0.65) infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 95, 28, 0.3);
  }
  50% {
    box-shadow: 0 0 5px 2px rgba(234, 95, 28, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 95, 28, 0.3);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 95, 28, 0.3);
  }
  50% {
    box-shadow: 0 0 5px 2px rgba(234, 95, 28, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 95, 28, 0.3);
  }
}
#support {
  padding: 20px 30px;
  min-height: 440px;
  height: auto;
  background-color: #f7f7f7;
  border-radius: 5px;
  transition: all 0.4s ease-in-out !important;
  color: black;
}
#support .sub-header {
  font-size: 22px;
  color: #d73c75;
  margin: 20px 0;
  font-weight: bold;
}
#support .parent {
  opacity: 0;
  height: 0;
  transform: rotateY(90deg);
  transition: opacity 0.4s ease-in-out, height 0.4s ease-in-out, transform 0.4s linear 0.3s;
}
#support .parent-show {
  margin: 10px 0;
  height: 80px !important;
  opacity: 1 !important;
  transform: rotateY(0deg);
  transition: opacity 0.4s ease-in-out, height 0.4s ease-in-out, transform 1ms;
}
#support .support-img-info {
  background: #ffffff;
  border-radius: 11px 47px 40px 111.5px;
  min-height: 200px;
  margin: 20px auto 0;
  padding: 20px 60px;
  display: grid;
  grid-template-columns: 200px 1fr;
  justify-content: center;
  align-items: center;
  transition: all 2s;
  width: 80%;
  gap: 20px;
}
#support .support-img-info img {
  max-height: 180px;
  margin: auto;
}
#support .support-img-info p {
  font-size: 20px;
  font-weight: bold;
}
#support .inputs, #support .section-data {

  margin: auto;
}
#support .inputs input, #support .section-data input {
  height: 3.2em;
}
#support .section-column {
  flex-direction: column;
}
#support .section-price {
  width: 100%;
  justify-content: space-between;
}
#support .section-price .supportValue {
  color: white;
  font-weight: bold;
}
#support .section-price .supportValue label {
  border-radius: 0px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(35, 31, 58, 0.17);
  width: 100px;
  height: 40px;
  transition: all 0.2s ease-in-out;
}
#support .section-price .supportValue label:hover {
  box-shadow: inset -1px -1px 2px white, inset 0 -3px #d73c75, -1px -1px 2px -1px gray;
  transform: translateY(3px);
  background-color: rgba(234, 95, 28, 0.41);
  cursor: pointer;
}
#support .section-price .supportValue .support_others {
  width: 100%;
  height: 40px;
  font-size: 22px;
  font-weight: bold;
  color: white;
  text-align: center;
  background: #d73c75;
  outline: none;
  border-radius: 13px;
  padding: 0;
  box-shadow: none;
  border: none;
}
#support .section-price .supportValue .support_others::-webkit-inner-spin-button, #support .section-price .supportValue .support_others::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#support .section-price .supportValue input[type=radio] {
  display: none;
}
#support .section-price .supportValue input[type=radio]:checked + label {
  background-color: #d73c75;
}
#support .animate-show-submit {
  height: 80px !important;
  opacity: 1 !important;
  transform: rotateY(0deg);
  transition: opacity 0.4s ease-in-out, height 0.4s ease-in-out, transform 1ms;
}
#support .agreements {
  font-weight: normal;
  font-size: 0.9em;
  align-items: flex-start;
  gap: 3px;
  line-height: 1.3em;
  padding: 0.8em;
}
#support .agreements a {
  color: #d73c75;
  cursor: pointer;
}
#support .agreements .grid {
  display: flex;
  margin: 10px;
  align-items: center;
}
#support .agreements .grid span {
  margin-right: 5px;
}
#support .agreements .grid input[type=checkbox] {
  height: 20px;
  width: 20px;
  min-width: 20px;
}
#support button[type=submit] {
  border-radius: 0px;
  border: none;
  padding: 8px;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d73c75;
  color: white;
  width: 200px;
  height: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0px 0px black;
  transition: all 0.3s ease-in-out;
}
#support button[type=submit]:hover {
  transform: scale(1.1);
  background-color: #b0154e;
  box-shadow: 0 1px -5px 6px black;
  cursor: pointer;
}

@media screen and (max-width: 1000px) {
  #support .support-img-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  #support .support-img-info {
    display: flex;
    flex-direction: column;
  }
  #support .support-img-info p {
    text-align: center;
    font-size: 13px;
  }
}
.methodsp24 {
  margin: 30px 0px 0px 0px;
}
/*# sourceMappingURL=style.css.map */