/*
  Template:     onepress
  Theme Name:   onepress_child
*/
.contact__form {
  max-width: 710px;
  margin: auto;
}

/* .contact dt {
  font-weight: 400;
} */

.contact input, .contact textarea, .contact button {
  outline: none;
}

.contact input:not([type="checkbox"]), .contact textarea {
  width: 100%;
}

.confirm dt {
  padding-top: 2px;
}

.confirm__dd {
  font-weight: 400;
  display: block;
  padding: 0 5px;
  padding: 2px 5px;
  border: 1px solid #616161;
  min-height: 30px;
}

.confirm .btn-square:disabled {
  cursor: default;
  opacity: .8;
}

.contact select{
  width: 50%;
}


.contact .radio-group {
  margin-top: -8px;
  display: grid;
  gap: 12px;
}

.contact .radio-group label {
  display: block;
  position: relative;
  margin: 0;
  padding: 10px 16px 10px 54px;
  line-height: 1.5;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.45s linear;
  font-weight: 400;
}

.contact .radio-group label:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact .radio-group input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.contact .radio-group label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 4px solid #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact .radio-group label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  width: 10px;
  height: 10px;
  background: transparent;
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact .radio-group label:has(input[type="radio"]:checked) {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.contact .radio-group label:has(input[type="radio"]:checked)::before {
  border-color: #000;
}

.contact .radio-group label:has(input[type="radio"]:checked)::after {
  background: #000;
}


input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}

input[type="date"]{
  position: relative;
}

html {
  font-size: 54.5%;
}

.contact a.underline {
  text-decoration: underline!important;
}


#overlay-loading {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#overlay-loading .overlay-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
#overlay-loading .overlay-spinner {
  position: relative;
  z-index: 1;
}
.spinner-border {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  vertical-align: text-bottom;
  border: .3em solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}
@keyframes spinner-border {
  to { transform: rotate(360deg); }
}



@media (min-width: 576px) {
  html {
    font-size: 62.5%;
  }
}
/*# sourceMappingURL=contact.css.map */
