/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.ajv1_form {
    text-align: center;
}       
.ajv1_form select,
.ajv1_form input {
    width: 90%;
    margin: auto;
    background: #b51b59;
    font-family: "roc-grotesk", Sans-serif;
    color: #F5F7FB;
    border: 2px solid #F5F7FB;
    border-radius: 10px;
    height: 50px;
    margin-bottom: 20px;
    font-size: 20px;
    padding-top: 10px;
}               
.ajv1_form select {
    appearance: none;
    background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);
    background-repeat: no-repeat;
    background-position: right 1.7rem top 50%;
    background-size: 0.8rem auto;
}             
.ajv1_form option {
    height: 50px;
} 
.ajv1_form label {
    color: #F5F7FB;
    font-family: "roc-grotesk", Sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 20px;
}
.ajv1_form button {
    background: #272938;
    color: #F5F7FB;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    padding: 10px 50px;
}            
.ajv1_form a {
    font-size: 18px;
    font-family: "roc-grotesk", Sans-serif;
    text-decoration: underline!important;
    color: #fff!important;
    margin-right: 50px;
    cursor: pointer;
}
.ajv1_form button:hover {
    background: #9F1548;
    border: none;
}

#s_2_a,
#s_2_b,
#s_3_a,
#s_3_b,
#s_3_c {
    display: none;
}
.stepper-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  opacity: 0.6;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #FFF;
    width: 70%;
    top: 20px;
    left: -35%;
    z-index: 3;
    opacity: 0.6;
}
.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #FFF;
    width: 70%;
    top: 20px;
    left: 65%;
    z-index: 3;
    opacity: 0.6;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #fff;
    margin-bottom: 6px;
    color: #fff;
    font-size: 18px;
    padding-top: 0px;
}

.active,
.stepper-item.active::after {
  opacity: 1;
}

.stepper-item::after,
.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}