:root {
  --vo-purple: #963785;
  --white: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

label {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  display: block;
}

.section {
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  display: flex;
}

.form {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.radio-fields-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 15px;
  display: flex;
}

.radio-button-field {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  padding-left: 0;
  display: flex;
}

.radio-button-label {
  margin-bottom: 0;
}

.radio-button {
  width: 40px;
  height: 40px;
  margin-top: 0;
  margin-left: 0;
}

.radio-button.w--redirected-checked {
  border-width: 15px;
}

.hide-items-wrapper {
  width: 100%;
  display: none;
}

.submit-button {
  background-color: var(--vo-purple);
  border-radius: 30px;
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 20px;
}

.head-section {
  background-color: var(--vo-purple);
  color: var(--white);
  justify-content: center;
  align-items: center;
  height: 10vh;
  display: flex;
}

.workflow-heading {
  margin-top: 0;
  margin-bottom: 0;
}

.link-block {
  outline-offset: 0px;
  outline: 1px solid #00e;
  padding: 15px;
  text-decoration: none;
}

.form-wrapper {
  width: 80vw;
}

.loading-animation {
  z-index: 5;
  background-color: rgba(255, 255, 255, .8);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.lottie-animation {
  width: 50vw;
}

.success-message {
  background-color: rgba(0, 0, 0, 0);
}

.step-heading {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.step-heading.number {
  margin-bottom: 0;
  margin-right: 20px;
}

.step-text {
  text-align: left;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
}

.step-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .hide-items-wrapper {
    display: block;
  }

  .form-wrapper {
    max-width: 940px;
  }

  .loading-animation {
    z-index: -1;
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .head-section {
    background-color: var(--vo-purple);
    color: #fff;
  }

  .workflow-heading {
    margin-top: 0;
    margin-bottom: 0;
  }

  .loading-animation {
    justify-content: center;
    align-items: center;
    display: none;
  }

  .lottie-animation {
    z-index: 999;
    position: relative;
  }

  .step-heading.parcel {
    text-align: left;
  }

  .container {
    width: 90vw;
  }
}


