@charset "UTF-8";

body {
  font-family: Helvetica Neue;
  margin: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}

#header-spacer {
  padding-top: 140px;
}
@media screen and (max-width: 1024px) {
  #header-spacer {
    padding-top: 90px;
  }
}

#legend {
  margin-left: 0.35em;
  margin-bottom: 5px;
  width: unset;
  font-size: 14px;
}

.macho-group {
  display: flex;
  justify-content: space-between;
}

.macho-group > input,
select {
  max-width: calc(50% - 10px) !important;
}

.macho-group > :first-child {
  margin-right: 20px !important;
}

.macho-phone-field-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.macho-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}

.macho-phone-input-wrapper {
  display: flex;
}

.macho-country-code-select {
  max-width: 90px !important;
  outline: none;
  border: 1px solid black;
}

.macho-checkboxes-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.macho-phone-error {
  display: none;
  color: red;
}

.macho-checkboxes-wrapper > div:not(:last-child) {
  margin-right: 20px !important;
}

.macho-checkbox-fieldset {
  margin: 0 2px;
  margin-top: 20px;
  border: 1px solid black;
  padding: 0.35em 0.625em 0.75em;
}

.success-message {
  display: none;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.image-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.walk-in-image {
  width: auto;
  max-height: 350px;
  margin: 20px;
}

@media screen and (max-width: 768px) {
  #success-text {
    font-size: 26px;
  }
}

.walk-in-image {
  width: auto;
  max-height: 250px;
  margin: 20px;
}

#success-text {
  max-width: 1000px;
  margin-top: 60px;
  font-size: 36px;
  color: #fff;
  font-family: "acumin-pro-condensed";
  text-transform: uppercase;
  opacity: 0.35;
}

#success-text-link {
  color: #fff;
  text-decoration: underline;
}

#swift-form {
  color: black;
}

#register-page-logo {
  display: flex;
}

.register-message {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
}

#register-header {
  font-family: "acumin-pro-condensed";
  font-size: 48px;
  opacity: 0.35;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}

#register-text {
  font-family: "acumin-pro-condensed";
  text-transform: uppercase;
  opacity: 0.35;
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 10px;
}
#mailchimp {
  padding: 75px 0 20px;
  background-color: #fff;
  flex: 1;
}

@media screen and (max-width: 600px) {
  .macho-group {
    flex-direction: column;
  }

  .macho-group > :first-child {
    margin-right: 0px !important;
  }

  .macho-group > input,
  select {
    max-width: 100% !important;
  }

  #register-header {
    font-size: 36px;
  }

  #register-text {
    font-size: 18px;
  }
}
#register-section {
  padding-top: 3em;
}
form {
  font-size: 14px;
}
.black-container {
  background-color: black;
}

#mailchimp .container {
  text-align: left;
}

#mailchimp input,
select {
  margin: 1em 0;
  padding: 1em;
  width: 100%;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid black;
  max-height: 52px;
}

#registration-form-submit {
  max-height: 60px;
}

select {
  background-color: white;
  appearance: none;
  background: white url("./arrow.png") no-repeat right 14px center;
  background-size: 16px;
}

#mailchimp input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  padding: 0;
}

#mailchimp input[type="submit"] {
  background-color: black;
  outline: 0;
  border: 0;
  font-weight: 500;
  color: white;
  font-size: 1.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.container {
  margin: 0 auto;
  width: 90%;
}

section .container {
  padding: 0;
}
section .container h1 {
  padding: 0.6em 0;
  line-height: 1.2;
}
@media only screen and (min-width: 1090px) {
  section .container {
    padding: 0;
    width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  section .container p {
    text-align: left;
  }
  #mailchimp input[type="submit"] {
    border-radius: 2px;
    width: 130px;
  }
  #mailchimp input[type="submit"]:hover {
    border-radius: 2px;
    width: 130px;
  }
  #register-section {
    padding-top: 0;
  }
  #register-section p {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 1440px;
  }
}

/*Autocomplete styling*/

.autocomplete {
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;

  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
  background-color: #e9e9e9;
}
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.hidden-input {
  display: none;
}
